public final class com.sun.webkit.SimpleSharedBufferInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.webkit.SimpleSharedBufferInputStream
  super_class: java.io.InputStream
{
  private final com.sun.webkit.SharedBuffer sharedBuffer;
    descriptor: Lcom/sun/webkit/SharedBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private long position;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  public void <init>(com.sun.webkit.SharedBuffer);
    descriptor: (Lcom/sun/webkit/SharedBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
        start local 1 // com.sun.webkit.SharedBuffer sharedBuffer
         0: .line 36
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 37
            aload 1 /* sharedBuffer */
            ifnonnull 3
         2: .line 38
            new java.lang.NullPointerException
            dup
            ldc "sharedBuffer is null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 40
      StackMap locals: com.sun.webkit.SimpleSharedBufferInputStream com.sun.webkit.SharedBuffer
      StackMap stack:
            aload 0 /* this */
            aload 1 /* sharedBuffer */
            putfield com.sun.webkit.SimpleSharedBufferInputStream.sharedBuffer:Lcom/sun/webkit/SharedBuffer;
         4: .line 41
            return
        end local 1 // com.sun.webkit.SharedBuffer sharedBuffer
        end local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lcom/sun/webkit/SimpleSharedBufferInputStream;
            0    5     1  sharedBuffer  Lcom/sun/webkit/SharedBuffer;
    MethodParameters:
              Name  Flags
      sharedBuffer  

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
         0: .line 46
            iconst_1
            newarray 8
            astore 1 /* buffer */
        start local 1 // byte[] buffer
         1: .line 47
            aload 0 /* this */
            getfield com.sun.webkit.SimpleSharedBufferInputStream.sharedBuffer:Lcom/sun/webkit/SharedBuffer;
            aload 0 /* this */
            getfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
            aload 1 /* buffer */
            iconst_0
            iconst_1
            invokevirtual com.sun.webkit.SharedBuffer.getSomeData:(J[BII)I
            istore 2 /* length */
        start local 2 // int length
         2: .line 48
            iload 2 /* length */
            ifeq 5
         3: .line 49
            aload 0 /* this */
            dup
            getfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
            lconst_1
            ladd
            putfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
         4: .line 50
            aload 1 /* buffer */
            iconst_0
            baload
            sipush 255
            iand
            ireturn
         5: .line 52
      StackMap locals: byte[] int
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // int length
        end local 1 // byte[] buffer
        end local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/sun/webkit/SimpleSharedBufferInputStream;
            1    6     1  buffer  [B
            2    6     2  length  I

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 58
            aload 1 /* b */
            ifnonnull 2
         1: .line 59
            new java.lang.NullPointerException
            dup
            ldc "b is null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 61
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            ifge 4
         3: .line 62
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "off is negative"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 64
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifge 6
         5: .line 65
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "len is negative"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 67
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            aload 1 /* b */
            arraylength
            iload 2 /* off */
            isub
            if_icmple 10
         7: .line 68
            new java.lang.IndexOutOfBoundsException
            dup
         8: .line 69
            ldc "len is greater than b.length - off"
         9: .line 68
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 71
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 12
        11: .line 72
            iconst_0
            ireturn
        12: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.webkit.SimpleSharedBufferInputStream.sharedBuffer:Lcom/sun/webkit/SharedBuffer;
            aload 0 /* this */
            getfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual com.sun.webkit.SharedBuffer.getSomeData:(J[BII)I
            istore 4 /* length */
        start local 4 // int length
        13: .line 75
            iload 4 /* length */
            ifeq 16
        14: .line 76
            aload 0 /* this */
            dup
            getfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
            iload 4 /* length */
            i2l
            ladd
            putfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
        15: .line 77
            iload 4 /* length */
            ireturn
        16: .line 79
      StackMap locals: int
      StackMap stack:
            iconst_m1
            ireturn
        end local 4 // int length
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lcom/sun/webkit/SimpleSharedBufferInputStream;
            0   17     1       b  [B
            0   17     2     off  I
            0   17     3     len  I
           13   17     4  length  I
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
        start local 1 // long n
         0: .line 85
            aload 0 /* this */
            getfield com.sun.webkit.SimpleSharedBufferInputStream.sharedBuffer:Lcom/sun/webkit/SharedBuffer;
            invokevirtual com.sun.webkit.SharedBuffer.size:()J
            aload 0 /* this */
            getfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
            lsub
            lstore 3 /* k */
        start local 3 // long k
         1: .line 86
            lload 1 /* n */
            lload 3 /* k */
            lcmp
            ifge 5
         2: .line 87
            lload 1 /* n */
            lconst_0
            lcmp
            ifge 3
            lconst_0
            goto 4
      StackMap locals: long
      StackMap stack:
         3: lload 1 /* n */
      StackMap locals:
      StackMap stack: long
         4: lstore 3 /* k */
         5: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
            lload 3 /* k */
            ladd
            putfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
         6: .line 90
            lload 3 /* k */
            lreturn
        end local 3 // long k
        end local 1 // long n
        end local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/webkit/SimpleSharedBufferInputStream;
            0    7     1     n  J
            1    7     3     k  J
    MethodParameters:
      Name  Flags
      n     

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
         0: .line 95
            aload 0 /* this */
            getfield com.sun.webkit.SimpleSharedBufferInputStream.sharedBuffer:Lcom/sun/webkit/SharedBuffer;
            invokevirtual com.sun.webkit.SharedBuffer.size:()J
            aload 0 /* this */
            getfield com.sun.webkit.SimpleSharedBufferInputStream.position:J
            lsub
         1: .line 96
            ldc 2147483647
         2: .line 95
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            ireturn
        end local 0 // com.sun.webkit.SimpleSharedBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/webkit/SimpleSharedBufferInputStream;
}
SourceFile: "SimpleSharedBufferInputStream.java"