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 103
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 78
            aload 0 /* this */
            iconst_0
            putfield java.io.ByteArrayInputStream.mark:I
         2: .line 104
            aload 0 /* this */
            aload 1 /* buf */
            putfield java.io.ByteArrayInputStream.buf:[B
         3: .line 105
            aload 0 /* this */
            iconst_0
            putfield java.io.ByteArrayInputStream.pos:I
         4: .line 106
            aload 0 /* this */
            aload 1 /* buf */
            arraylength
            putfield java.io.ByteArrayInputStream.count:I
         5: .line 107
            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 123
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 78
            aload 0 /* this */
            iconst_0
            putfield java.io.ByteArrayInputStream.mark:I
         2: .line 124
            aload 0 /* this */
            aload 1 /* buf */
            putfield java.io.ByteArrayInputStream.buf:[B
         3: .line 125
            aload 0 /* this */
            iload 2 /* offset */
            putfield java.io.ByteArrayInputStream.pos:I
         4: .line 126
            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 127
            aload 0 /* this */
            iload 2 /* offset */
            putfield java.io.ByteArrayInputStream.mark:I
         6: .line 128
            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 144
            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=4, 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 177
            aload 1 /* b */
            ifnonnull 2
         1: .line 178
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 179
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 3
            iload 3 /* len */
            iflt 3
            iload 3 /* len */
            aload 1 /* b */
            arraylength
            iload 2 /* off */
            isub
            if_icmple 4
         3: .line 180
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            if_icmplt 6
         5: .line 183
            iconst_m1
            ireturn
         6: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            iload 3 /* len */
            iadd
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            if_icmple 8
         7: .line 186
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            isub
            istore 3 /* len */
         8: .line 188
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifgt 10
         9: .line 189
            iconst_0
            ireturn
        10: .line 191
      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
        11: .line 192
            aload 0 /* this */
            dup
            getfield java.io.ByteArrayInputStream.pos:I
            iload 3 /* len */
            iadd
            putfield java.io.ByteArrayInputStream.pos:I
        12: .line 193
            iload 3 /* len */
            ireturn
        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   13     0  this  Ljava/io/ByteArrayInputStream;
            0   13     1     b  [B
            0   13     2   off  I
            0   13     3   len  I
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized long skip(long);
    descriptor: (J)J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.io.ByteArrayInputStream this
        start local 1 // long n
         0: .line 209
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            i2l
            lload 1 /* n */
            ladd
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            i2l
            lcmp
            ifle 2
         1: .line 210
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.count:I
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            isub
            i2l
            lstore 1 /* n */
         2: .line 212
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifge 4
         3: .line 213
            lconst_0
            lreturn
         4: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.io.ByteArrayInputStream.pos:I
            i2l
            lload 1 /* n */
            ladd
            l2i
            putfield java.io.ByteArrayInputStream.pos:I
         5: .line 216
            lload 1 /* n */
            lreturn
        end local 1 // long n
        end local 0 // java.io.ByteArrayInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/io/ByteArrayInputStream;
            0    6     1     n  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 230
            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 241
            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 260
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.pos:I
            putfield java.io.ByteArrayInputStream.mark:I
         1: .line 261
            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 269
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.ByteArrayInputStream.mark:I
            putfield java.io.ByteArrayInputStream.pos:I
         1: .line 270
            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 279
            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"