final class sun.security.ssl.AppInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.AppInputStream
  super_class: java.io.InputStream
{
  private static final int READ_BUFFER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4096

  private static final byte[] SKIP_ARRAY;
    descriptor: [B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final sun.security.ssl.SSLSocketImpl socket;
    descriptor: Lsun/security/ssl/SSLSocketImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.nio.ByteBuffer buffer;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0002) ACC_PRIVATE

  private boolean appDataIsAvailable;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final byte[] oneByte;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 45
            sipush 256
            newarray 8
            putstatic sun.security.ssl.AppInputStream.SKIP_ARRAY:[B
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(sun.security.ssl.SSLSocketImpl);
    descriptor: (Lsun/security/ssl/SSLSocketImpl;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.AppInputStream this
        start local 1 // sun.security.ssl.SSLSocketImpl conn
         0: .line 59
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 57
            aload 0 /* this */
            iconst_1
            newarray 8
            putfield sun.security.ssl.AppInputStream.oneByte:[B
         2: .line 60
            aload 0 /* this */
            sipush 4096
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            putfield sun.security.ssl.AppInputStream.buffer:Ljava/nio/ByteBuffer;
         3: .line 61
            aload 0 /* this */
            aload 1 /* conn */
            putfield sun.security.ssl.AppInputStream.socket:Lsun/security/ssl/SSLSocketImpl;
         4: .line 62
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.AppInputStream.appDataIsAvailable:Z
         5: .line 63
            return
        end local 1 // sun.security.ssl.SSLSocketImpl conn
        end local 0 // sun.security.ssl.AppInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/security/ssl/AppInputStream;
            0    6     1  conn  Lsun/security/ssl/SSLSocketImpl;
    MethodParameters:
      Name  Flags
      conn  

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.AppInputStream this
         0: .line 72
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.appDataIsAvailable:Z
            ifeq 1
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            invokevirtual sun.security.ssl.SSLSocketImpl.checkEOF:()Z
            ifeq 2
         1: .line 73
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ireturn
        end local 0 // sun.security.ssl.AppInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/ssl/AppInputStream;
    Exceptions:
      throws java.io.IOException

  public synchronized int read();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.security.ssl.AppInputStream this
         0: .line 84
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.oneByte:[B
            iconst_0
            iconst_1
            invokevirtual sun.security.ssl.AppInputStream.read:([BII)I
            istore 1 /* n */
        start local 1 // int n
         1: .line 85
            iload 1 /* n */
            ifgt 3
         2: .line 86
            iconst_m1
            ireturn
         3: .line 88
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.oneByte:[B
            iconst_0
            baload
            sipush 255
            iand
            ireturn
        end local 1 // int n
        end local 0 // sun.security.ssl.AppInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/ssl/AppInputStream;
            1    4     1     n  I
    Exceptions:
      throws java.io.IOException

  public synchronized int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // sun.security.ssl.AppInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 104
            aload 1 /* b */
            ifnonnull 2
         1: .line 105
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 106
      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 107
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 108
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 6
         5: .line 109
            iconst_0
            ireturn
         6: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            invokevirtual sun.security.ssl.SSLSocketImpl.checkEOF:()Z
            ifeq 8
         7: .line 113
            iconst_m1
            ireturn
         8: .line 117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.ssl.AppInputStream.available:()I
            istore 4 /* remains */
        start local 4 // int remains
         9: .line 118
            iload 4 /* remains */
            ifle 13
        10: .line 119
            iload 4 /* remains */
            iload 3 /* len */
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* howmany */
        start local 5 // int howmany
        11: .line 120
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.buffer:Ljava/nio/ByteBuffer;
            aload 1 /* b */
            iload 2 /* off */
            iload 5 /* howmany */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
        12: .line 122
            iload 5 /* howmany */
            ireturn
        end local 5 // int howmany
        13: .line 125
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.AppInputStream.appDataIsAvailable:Z
        14: .line 126
            iconst_0
            istore 5 /* volume */
        start local 5 // int volume
        15: .line 134
            goto 32
        16: .line 136
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/ByteBuffer;
            pop
        17: .line 144
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            invokevirtual sun.security.ssl.SSLSocketImpl.bytesInCompletePacket:()I
            istore 6 /* packetLen */
        start local 6 // int packetLen
        18: .line 145
            iload 6 /* packetLen */
            ifge 20
        19: .line 146
            iconst_m1
            ireturn
        20: .line 150
      StackMap locals: int
      StackMap stack:
            iload 6 /* packetLen */
            ldc 33093
            if_icmple 24
        21: .line 151
            new javax.net.ssl.SSLProtocolException
            dup
        22: .line 152
            new java.lang.StringBuilder
            dup
            ldc "Illegal packet size: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 6 /* packetLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        23: .line 151
            invokespecial javax.net.ssl.SSLProtocolException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 155
      StackMap locals:
      StackMap stack:
            iload 6 /* packetLen */
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmple 26
        25: .line 156
            aload 0 /* this */
            iload 6 /* packetLen */
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            putfield sun.security.ssl.AppInputStream.buffer:Ljava/nio/ByteBuffer;
        26: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.buffer:Ljava/nio/ByteBuffer;
            invokevirtual sun.security.ssl.SSLSocketImpl.readRecord:(Ljava/nio/ByteBuffer;)I
            istore 5 /* volume */
        27: .line 160
            iload 5 /* volume */
            ifge 29
        28: .line 161
            iconst_m1
            ireturn
        29: .line 162
      StackMap locals:
      StackMap stack:
            iload 5 /* volume */
            ifle 32
        30: .line 163
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.AppInputStream.appDataIsAvailable:Z
        31: .line 164
            goto 33
        end local 6 // int packetLen
        32: .line 134
      StackMap locals:
      StackMap stack:
            iload 5 /* volume */
            ifeq 16
        33: .line 168
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iload 5 /* volume */
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* howmany */
        start local 6 // int howmany
        34: .line 169
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.buffer:Ljava/nio/ByteBuffer;
            aload 1 /* b */
            iload 2 /* off */
            iload 6 /* howmany */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
        35: .line 170
            iload 6 /* howmany */
        36: ireturn
        end local 6 // int howmany
        37: .line 171
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 6 /* e */
        start local 6 // java.lang.Exception e
        38: .line 173
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            aload 6 /* e */
            invokevirtual sun.security.ssl.SSLSocketImpl.handleException:(Ljava/lang/Exception;)V
        39: .line 176
            iconst_m1
            ireturn
        end local 6 // java.lang.Exception e
        end local 5 // int volume
        end local 4 // int remains
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.security.ssl.AppInputStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   40     0       this  Lsun/security/ssl/AppInputStream;
            0   40     1          b  [B
            0   40     2        off  I
            0   40     3        len  I
            9   40     4    remains  I
           11   13     5    howmany  I
           15   40     5     volume  I
           18   32     6  packetLen  I
           34   37     6    howmany  I
           38   40     6          e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          15    19      37  Class java.lang.Exception
          20    28      37  Class java.lang.Exception
          29    36      37  Class java.lang.Exception
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized long skip(long);
    descriptor: (J)J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // sun.security.ssl.AppInputStream this
        start local 1 // long n
         0: .line 190
            lconst_0
            lstore 3 /* skipped */
        start local 3 // long skipped
         1: .line 191
            goto 8
         2: .line 192
      StackMap locals: long
      StackMap stack:
            lload 1 /* n */
            getstatic sun.security.ssl.AppInputStream.SKIP_ARRAY:[B
            arraylength
            i2l
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 5 /* len */
        start local 5 // int len
         3: .line 193
            aload 0 /* this */
            getstatic sun.security.ssl.AppInputStream.SKIP_ARRAY:[B
            iconst_0
            iload 5 /* len */
            invokevirtual sun.security.ssl.AppInputStream.read:([BII)I
            istore 6 /* r */
        start local 6 // int r
         4: .line 194
            iload 6 /* r */
            ifgt 6
         5: .line 195
            goto 9
         6: .line 197
      StackMap locals: int int
      StackMap stack:
            lload 1 /* n */
            iload 6 /* r */
            i2l
            lsub
            lstore 1 /* n */
         7: .line 198
            lload 3 /* skipped */
            iload 6 /* r */
            i2l
            ladd
            lstore 3 /* skipped */
        end local 6 // int r
        end local 5 // int len
         8: .line 191
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifgt 2
         9: .line 200
      StackMap locals:
      StackMap stack:
            lload 3 /* skipped */
            lreturn
        end local 3 // long skipped
        end local 1 // long n
        end local 0 // sun.security.ssl.AppInputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lsun/security/ssl/AppInputStream;
            0   10     1        n  J
            1   10     3  skipped  J
            3    8     5      len  I
            4    8     6        r  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.AppInputStream this
         0: .line 208
            aload 0 /* this */
            getfield sun.security.ssl.AppInputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            invokevirtual sun.security.ssl.SSLSocketImpl.close:()V
         1: .line 209
            return
        end local 0 // sun.security.ssl.AppInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/AppInputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "AppInputStream.java"