public class java.io.ByteArrayInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.ByteArrayInputStream
  super_class: java.io.InputStream
{
  protected byte[] buf;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected int pos;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int mark;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int count;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.ByteArrayInputStream this
        start local 1 // byte[] buf
         0: .line 105
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 80
            aload 0 /* this */
            iconst_0
            putfield java.io.ByteArrayInputStream.mark:I
         2: .line 106
            aload 0 /* this */
            aload 1 /* buf */
            putfield java.io.ByteArrayInputStream.buf:[B
         3: .line 107
            aload 0 /* this */
            iconst_0
            putfield java.io.ByteArrayInputStream.pos:I
         4: .line 108
            aload 0 /* this */
            aload 1 /* buf */
            arraylength
            putfield java.io.ByteArrayInputStream.count:I
         5: .line 109
            return
        end local 1 // byte[] buf
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/io/ByteArrayInputStream;
            0    6     1   buf  [B
    MethodParameters:
      Name  Flags
      buf   

  public void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // java.io.ByteArrayInputStream this
        start local 1 // byte[] buf
        start local 2 // int offset
        start local 3 // int length
         0: .line 125
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 80
            aload 0 /* this */
            iconst_0
            putfield java.io.ByteArrayInputStream.mark:I
         2: .line 126
            aload 0 /* this */
            aload 1 /* buf */
            putfield java.io.ByteArrayInputStream.buf:[B
         3: .line 127
            aload 0 /* this */
            iload 2 /* offset */
            putfield java.io.ByteArrayInputStream.pos:I
         4: .line 128
            aload 0 /* this */
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            aload 1 /* buf */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            putfield java.io.ByteArrayInputStream.count:I
         5: .line 129
            aload 0 /* this */
            iload 2 /* offset */
            putfield java.io.ByteArrayInputStream.mark:I
         6: .line 130
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] buf
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljava/io/ByteArrayInputStream;
            0    7     1     buf  [B
            0    7     2  offset  I
            0    7     3  length  I
    MethodParameters:
        Name  Flags
      buf     
      offset  
      length  

  public synchronized int read();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.io.ByteArrayInputStream this
         0: .line 146
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            if_icmpge 1
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.buf:[B
            aload 0 /* this */
            dup
            getfield java.io.ByteArrayInputStream.pos:I
            dup_x1
            iconst_1
            iadd
            putfield java.io.ByteArrayInputStream.pos:I
            baload
            sipush 255
            iand
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_m1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/ByteArrayInputStream;

  public synchronized int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // java.io.ByteArrayInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 173
            iload 2 /* off */
            iload 3 /* len */
            aload 1 /* b */
            arraylength
            invokestatic java.util.Objects.checkFromIndexSize:(III)I
            pop
         1: .line 175
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            if_icmplt 3
         2: .line 176
            iconst_m1
            ireturn
         3: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            isub
            istore 4 /* avail */
        start local 4 // int avail
         4: .line 180
            iload 3 /* len */
            iload 4 /* avail */
            if_icmple 6
         5: .line 181
            iload 4 /* avail */
            istore 3 /* len */
         6: .line 183
      StackMap locals: int
      StackMap stack:
            iload 3 /* len */
            ifgt 8
         7: .line 184
            iconst_0
            ireturn
         8: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.buf:[B
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 187
            aload 0 /* this */
            dup
            getfield java.io.ByteArrayInputStream.pos:I
            iload 3 /* len */
            iadd
            putfield java.io.ByteArrayInputStream.pos:I
        10: .line 188
            iload 3 /* len */
            ireturn
        end local 4 // int avail
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Ljava/io/ByteArrayInputStream;
            0   11     1      b  [B
            0   11     2    off  I
            0   11     3    len  I
            4   11     4  avail  I
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized byte[] readAllBytes();
    descriptor: ()[B
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.io.ByteArrayInputStream this
         0: .line 192
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.buf:[B
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            invokestatic java.util.Arrays.copyOfRange:([BII)[B
            astore 1 /* result */
        start local 1 // byte[] result
         1: .line 193
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            putfield java.io.ByteArrayInputStream.pos:I
         2: .line 194
            aload 1 /* result */
            areturn
        end local 1 // byte[] result
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljava/io/ByteArrayInputStream;
            1    3     1  result  [B

  public int readNBytes(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // java.io.ByteArrayInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 198
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.ByteArrayInputStream.read:([BII)I
            istore 4 /* n */
        start local 4 // int n
         1: .line 199
            iload 4 /* n */
            iconst_m1
            if_icmpne 2
            iconst_0
            goto 3
      StackMap locals: int
      StackMap stack:
         2: iload 4 /* n */
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 4 // int n
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/ByteArrayInputStream;
            0    4     1     b  [B
            0    4     2   off  I
            0    4     3   len  I
            1    4     4     n  I
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized long transferTo(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.io.ByteArrayInputStream this
        start local 1 // java.io.OutputStream out
         0: .line 203
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            isub
            istore 2 /* len */
        start local 2 // int len
         1: .line 204
            aload 1 /* out */
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.buf:[B
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            iload 2 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         2: .line 205
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            putfield java.io.ByteArrayInputStream.pos:I
         3: .line 206
            iload 2 /* len */
            i2l
            lreturn
        end local 2 // int len
        end local 1 // java.io.OutputStream out
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/ByteArrayInputStream;
            0    4     1   out  Ljava/io/OutputStream;
            1    4     2   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public synchronized long skip(long);
    descriptor: (J)J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // java.io.ByteArrayInputStream this
        start local 1 // long n
         0: .line 222
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            isub
            i2l
            lstore 3 /* k */
        start local 3 // long k
         1: .line 223
            lload 1 /* n */
            lload 3 /* k */
            lcmp
            ifge 5
         2: .line 224
            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 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.io.ByteArrayInputStream.pos:I
            i2l
            lload 3 /* k */
            ladd
            l2i
            putfield java.io.ByteArrayInputStream.pos:I
         6: .line 228
            lload 3 /* k */
            lreturn
        end local 3 // long k
        end local 1 // long n
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/io/ByteArrayInputStream;
            0    7     1     n  J
            1    7     3     k  J
    MethodParameters:
      Name  Flags
      n     

  public synchronized int available();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.ByteArrayInputStream this
         0: .line 242
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            isub
            ireturn
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/ByteArrayInputStream;

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.ByteArrayInputStream this
         0: .line 253
            iconst_1
            ireturn
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/ByteArrayInputStream;

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.ByteArrayInputStream this
        start local 1 // int readAheadLimit
         0: .line 272
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            putfield java.io.ByteArrayInputStream.mark:I
         1: .line 273
            return
        end local 1 // int readAheadLimit
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Ljava/io/ByteArrayInputStream;
            0    2     1  readAheadLimit  I
    MethodParameters:
                Name  Flags
      readAheadLimit  

  public synchronized void reset();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.ByteArrayInputStream this
         0: .line 281
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.mark:I
            putfield java.io.ByteArrayInputStream.pos:I
         1: .line 282
            return
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/ByteArrayInputStream;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // java.io.ByteArrayInputStream this
         0: .line 290
            return
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/ByteArrayInputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "ByteArrayInputStream.java"