class sun.security.ssl.AppOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.security.ssl.AppOutputStream
  super_class: java.io.OutputStream
{
  private sun.security.ssl.SSLSocketImpl socket;
    descriptor: Lsun/security/ssl/SSLSocketImpl;
    flags: (0x0002) ACC_PRIVATE

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

  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.AppOutputStream this
        start local 1 // sun.security.ssl.SSLSocketImpl conn
         0: .line 44
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 42
            aload 0 /* this */
            iconst_1
            newarray 8
            putfield sun.security.ssl.AppOutputStream.oneByte:[B
         2: .line 45
            aload 0 /* this */
            aload 1 /* conn */
            putfield sun.security.ssl.AppOutputStream.socket:Lsun/security/ssl/SSLSocketImpl;
         3: .line 46
            return
        end local 1 // sun.security.ssl.SSLSocketImpl conn
        end local 0 // sun.security.ssl.AppOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/ssl/AppOutputStream;
            0    4     1  conn  Lsun/security/ssl/SSLSocketImpl;
    MethodParameters:
      Name  Flags
      conn  

  public synchronized void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.security.ssl.AppOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 54
            aload 1 /* b */
            ifnonnull 2
         1: .line 55
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 56
      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 57
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 58
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 6
         5: .line 59
            return
         6: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.AppOutputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            invokevirtual sun.security.ssl.SSLSocketImpl.checkWrite:()V
         7: .line 67
            aload 0 /* this */
            getfield sun.security.ssl.AppOutputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual sun.security.ssl.SSLSocketImpl.writeRecord:([BII)V
         8: .line 68
            aload 0 /* this */
            getfield sun.security.ssl.AppOutputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            invokevirtual sun.security.ssl.SSLSocketImpl.checkWrite:()V
         9: .line 69
            goto 12
      StackMap locals:
      StackMap stack: java.lang.Exception
        10: astore 4 /* e */
        start local 4 // java.lang.Exception e
        11: .line 71
            aload 0 /* this */
            getfield sun.security.ssl.AppOutputStream.socket:Lsun/security/ssl/SSLSocketImpl;
            aload 4 /* e */
            invokevirtual sun.security.ssl.SSLSocketImpl.handleException:(Ljava/lang/Exception;)V
        end local 4 // java.lang.Exception e
        12: .line 73
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.security.ssl.AppOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lsun/security/ssl/AppOutputStream;
            0   13     1     b  [B
            0   13     2   off  I
            0   13     3   len  I
           11   12     4     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           7     9      10  Class java.lang.Exception
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized void write(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.security.ssl.AppOutputStream this
        start local 1 // int i
         0: .line 80
            aload 0 /* this */
            getfield sun.security.ssl.AppOutputStream.oneByte:[B
            iconst_0
            iload 1 /* i */
            i2b
            bastore
         1: .line 81
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.ssl.AppOutputStream.oneByte:[B
            iconst_0
            iconst_1
            invokevirtual sun.security.ssl.AppOutputStream.write:([BII)V
         2: .line 82
            return
        end local 1 // int i
        end local 0 // sun.security.ssl.AppOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/ssl/AppOutputStream;
            0    3     1     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      i     

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