public class com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream
  super_class: java.io.OutputStream
{
  final java.io.OutputStream out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0010) ACC_FINAL

  final byte[] buf;
    descriptor: [B
    flags: (0x0010) ACC_FINAL

  static final int size;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 8192

  private static java.lang.ThreadLocal bufCahce;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  int pointer;
    descriptor: I
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 36
            new com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream$1
            dup
            invokespecial com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream$1.<init>:()V
            putstatic com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.bufCahce:Ljava/lang/ThreadLocal;
         1: .line 40
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
        start local 1 // java.io.OutputStream out
         0: .line 46
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 41
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
         2: .line 47
            aload 0 /* this */
            getstatic com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.bufCahce:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast byte[]
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.buf:[B
         3: .line 48
            aload 0 /* this */
            aload 1 /* out */
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.out:Ljava/io/OutputStream;
         4: .line 49
            return
        end local 1 // java.io.OutputStream out
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncBufferedOutputStream;
            0    5     1   out  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      out   

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
        start local 1 // byte[] arg0
         0: .line 53
            aload 0 /* this */
            aload 1 /* arg0 */
            iconst_0
            aload 1 /* arg0 */
            arraylength
            invokevirtual com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.write:([BII)V
         1: .line 54
            return
        end local 1 // byte[] arg0
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncBufferedOutputStream;
            0    2     1  arg0  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      arg0  

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
        start local 1 // byte[] arg0
        start local 2 // int arg1
        start local 3 // int len
         0: .line 58
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
            iload 3 /* len */
            iadd
            istore 4 /* newLen */
        start local 4 // int newLen
         1: .line 59
            iload 4 /* newLen */
            sipush 8192
            if_icmple 7
         2: .line 60
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.flushBuffer:()V
         3: .line 61
            iload 3 /* len */
            sipush 8192
            if_icmple 6
         4: .line 62
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.out:Ljava/io/OutputStream;
            aload 1 /* arg0 */
            iload 2 /* arg1 */
            iload 3 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         5: .line 63
            return
         6: .line 65
      StackMap locals: int
      StackMap stack:
            iload 3 /* len */
            istore 4 /* newLen */
         7: .line 67
      StackMap locals:
      StackMap stack:
            aload 1 /* arg0 */
            iload 2 /* arg1 */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.buf:[B
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 68
            aload 0 /* this */
            iload 4 /* newLen */
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
         9: .line 69
            return
        end local 4 // int newLen
        end local 3 // int len
        end local 2 // int arg1
        end local 1 // byte[] arg0
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncBufferedOutputStream;
            0   10     1    arg0  [B
            0   10     2    arg1  I
            0   10     3     len  I
            1   10     4  newLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      arg0  
      arg1  
      len   

  private final void flushBuffer();
    descriptor: ()V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
         0: .line 72
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
            ifle 2
         1: .line 73
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.out:Ljava/io/OutputStream;
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.buf:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
            invokevirtual java.io.OutputStream.write:([BII)V
         2: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
         3: .line 76
            return
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncBufferedOutputStream;
    Exceptions:
      throws java.io.IOException

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
        start local 1 // int arg0
         0: .line 80
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
            sipush 8192
            if_icmplt 2
         1: .line 81
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.flushBuffer:()V
         2: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.buf:[B
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.pointer:I
            iload 1 /* arg0 */
            i2b
            bastore
         3: .line 85
            return
        end local 1 // int arg0
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncBufferedOutputStream;
            0    4     1  arg0  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      arg0  

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
         0: .line 89
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.flushBuffer:()V
         1: .line 90
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         2: .line 91
            return
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncBufferedOutputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
         0: .line 95
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream.flush:()V
         1: .line 96
            return
        end local 0 // com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xml/internal/security/utils/UnsyncBufferedOutputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "UnsyncBufferedOutputStream.java"
NestMembers:
  com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream$1
InnerClasses:
  com.sun.org.apache.xml.internal.security.utils.UnsyncBufferedOutputStream$1