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 55
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 56
            new java.io.IOException
            dup
            ldc "read on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 59
      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 60
            iconst_m1
            ireturn
         4: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.get:()B
            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 72
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 73
            new java.io.IOException
            dup
            ldc "read on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 76
      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 86
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 87
            new java.io.IOException
            dup
            ldc "read on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 90
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ifnonnull 4
         3: .line 91
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         4: .line 92
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 6
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            if_icmpgt 6
            iload 3 /* len */
            iflt 6
         5: .line 93
            iload 2 /* off */
            iload 3 /* len */
            iadd
            aload 1 /* b */
            arraylength
            if_icmpgt 6
            iload 2 /* off */
            iload 3 /* len */
            iadd
            ifge 7
         6: .line 94
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         7: .line 95
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 9
         8: .line 96
            iconst_0
            ireturn
         9: .line 99
      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
        10: .line 100
            iload 4 /* length */
            ifne 12
        11: .line 101
            iconst_m1
            ireturn
        12: .line 104
      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
        13: .line 105
            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   14     0    this  Lsun/security/ssl/ByteBufferInputStream;
            0   14     1       b  [B
            0   14     2     off  I
            0   14     3     len  I
           10   14     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 114
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 115
            new java.io.IOException
            dup
            ldc "skip on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 118
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifgt 4
         3: .line 119
            lconst_0
            lreturn
         4: .line 126
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            l2i
            istore 3 /* nInt */
        start local 3 // int nInt
         5: .line 127
            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 129
            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/Buffer;
            pop
         7: .line 131
            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 141
            aload 0 /* this */
            getfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 142
            new java.io.IOException
            dup
            ldc "available on a closed InputStream"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 145
      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 155
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.ByteBufferInputStream.bb:Ljava/nio/ByteBuffer;
         1: .line 156
            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 161
            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 168
            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 176
            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"