class sun.security.ssl.ByteBufferInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.security.ssl.ByteBufferInputStream
  super_class: java.io.InputStream
{
  java.nio.ByteBuffer bb;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0000) 

  void <init>(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.ByteBufferInputStream this
        start local 1 // java.nio.ByteBuffer bb
         0: .line 44
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 45
            aload 0 /* this */
            aload 1 /* bb */
            putfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
         2: .line 46
            return
        end local 1 // java.nio.ByteBuffer bb
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/ssl/ByteBufferInputStream;
            0    3     1    bb  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      bb    

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.ssl.ByteBufferInputStream this
         0: .line 56
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 57
            new java.io.IOException
            dup
            ldc "read on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 60
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ifne 4
         3: .line 61
            iconst_m1
            ireturn
         4: .line 64
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            ireturn
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/ByteBufferInputStream;
    Exceptions:
      throws java.io.IOException

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.security.ssl.ByteBufferInputStream this
        start local 1 // byte[] b
         0: .line 75
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 76
            new java.io.IOException
            dup
            ldc "read on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual sun.security.ssl.ByteBufferInputStream.read:([BII)I
            ireturn
        end local 1 // byte[] b
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/ssl/ByteBufferInputStream;
            0    3     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.security.ssl.ByteBufferInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 90
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 91
            new java.io.IOException
            dup
            ldc "read on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 94
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ifnonnull 4
         3: .line 95
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         4: .line 96
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 5
            iload 3 /* len */
            iflt 5
            iload 3 /* len */
            aload 1 /* b */
            arraylength
            iload 2 /* off */
            isub
            if_icmple 6
         5: .line 97
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         6: .line 98
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 8
         7: .line 99
            iconst_0
            ireturn
         8: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 3 /* len */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* length */
        start local 4 // int length
         9: .line 103
            iload 4 /* length */
            ifne 11
        10: .line 104
            iconst_m1
            ireturn
        11: .line 107
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* length */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
        12: .line 108
            iload 4 /* length */
            ireturn
        end local 4 // int length
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lsun/security/ssl/ByteBufferInputStream;
            0   13     1       b  [B
            0   13     2     off  I
            0   13     3     len  I
            9   13     4  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.security.ssl.ByteBufferInputStream this
        start local 1 // long n
         0: .line 118
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 119
            new java.io.IOException
            dup
            ldc "skip on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 122
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifgt 4
         3: .line 123
            lconst_0
            lreturn
         4: .line 130
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            l2i
            istore 3 /* nInt */
        start local 3 // int nInt
         5: .line 131
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 3 /* nInt */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* skip */
        start local 4 // int skip
         6: .line 133
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 4 /* skip */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         7: .line 135
            iload 3 /* nInt */
            i2l
            lreturn
        end local 4 // int skip
        end local 3 // int nInt
        end local 1 // long n
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/security/ssl/ByteBufferInputStream;
            0    8     1     n  J
            5    8     3  nInt  I
            6    8     4  skip  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.ssl.ByteBufferInputStream this
         0: .line 146
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 147
            new java.io.IOException
            dup
            ldc "available on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ireturn
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/ssl/ByteBufferInputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.ByteBufferInputStream this
         0: .line 161
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
         1: .line 162
            return
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/ByteBufferInputStream;
    Exceptions:
      throws java.io.IOException

  public synchronized void mark(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // sun.security.ssl.ByteBufferInputStream this
        start local 1 // int readlimit
         0: .line 168
            return
        end local 1 // int readlimit
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lsun/security/ssl/ByteBufferInputStream;
            0    1     1  readlimit  I
    MethodParameters:
           Name  Flags
      readlimit  

  public synchronized void reset();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.ssl.ByteBufferInputStream this
         0: .line 176
            new java.io.IOException
            dup
            ldc "mark/reset not supported"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/ByteBufferInputStream;
    Exceptions:
      throws java.io.IOException

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.ByteBufferInputStream this
         0: .line 185
            iconst_0
            ireturn
        end local 0 // sun.security.ssl.ByteBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/ByteBufferInputStream;
}
SourceFile: "ByteBufferInputStream.java"