public class java.io.BufferedOutputStream extends java.io.FilterOutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.BufferedOutputStream
  super_class: java.io.FilterOutputStream
{
  protected byte[] buf;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected int count;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.BufferedOutputStream this
        start local 1 // java.io.OutputStream out
         0: .line 58
            aload 0 /* this */
            aload 1 /* out */
            sipush 8192
            invokespecial java.io.BufferedOutputStream.<init>:(Ljava/io/OutputStream;I)V
         1: .line 59
            return
        end local 1 // java.io.OutputStream out
        end local 0 // java.io.BufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/BufferedOutputStream;
            0    2     1   out  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      out   

  public void <init>(java.io.OutputStream, int);
    descriptor: (Ljava/io/OutputStream;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.io.BufferedOutputStream this
        start local 1 // java.io.OutputStream out
        start local 2 // int size
         0: .line 71
            aload 0 /* this */
            aload 1 /* out */
            invokespecial java.io.FilterOutputStream.<init>:(Ljava/io/OutputStream;)V
         1: .line 72
            iload 2 /* size */
            ifgt 3
         2: .line 73
            new java.lang.IllegalArgumentException
            dup
            ldc "Buffer size <= 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 75
      StackMap locals: java.io.BufferedOutputStream java.io.OutputStream int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* size */
            newarray 8
            putfield java.io.BufferedOutputStream.buf:[B
         4: .line 76
            return
        end local 2 // int size
        end local 1 // java.io.OutputStream out
        end local 0 // java.io.BufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/BufferedOutputStream;
            0    5     1   out  Ljava/io/OutputStream;
            0    5     2  size  I
    MethodParameters:
      Name  Flags
      out   
      size  

  private void flushBuffer();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.io.BufferedOutputStream this
         0: .line 80
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.count:I
            ifle 3
         1: .line 81
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.out:Ljava/io/OutputStream;
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.buf:[B
            iconst_0
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.count:I
            invokevirtual java.io.OutputStream.write:([BII)V
         2: .line 82
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedOutputStream.count:I
         3: .line 84
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.BufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/BufferedOutputStream;
    Exceptions:
      throws java.io.IOException

  public synchronized void write(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.io.BufferedOutputStream this
        start local 1 // int b
         0: .line 94
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.count:I
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.buf:[B
            arraylength
            if_icmplt 2
         1: .line 95
            aload 0 /* this */
            invokevirtual java.io.BufferedOutputStream.flushBuffer:()V
         2: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.buf:[B
            aload 0 /* this */
            dup
            getfield java.io.BufferedOutputStream.count:I
            dup_x1
            iconst_1
            iadd
            putfield java.io.BufferedOutputStream.count:I
            iload 1 /* b */
            i2b
            bastore
         3: .line 98
            return
        end local 1 // int b
        end local 0 // java.io.BufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/BufferedOutputStream;
            0    4     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public synchronized void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // java.io.BufferedOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 118
            iload 3 /* len */
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.buf:[B
            arraylength
            if_icmplt 4
         1: .line 122
            aload 0 /* this */
            invokevirtual java.io.BufferedOutputStream.flushBuffer:()V
         2: .line 123
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.out:Ljava/io/OutputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         3: .line 124
            return
         4: .line 126
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.buf:[B
            arraylength
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.count:I
            isub
            if_icmple 6
         5: .line 127
            aload 0 /* this */
            invokevirtual java.io.BufferedOutputStream.flushBuffer:()V
         6: .line 129
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.buf:[B
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.count:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 130
            aload 0 /* this */
            dup
            getfield java.io.BufferedOutputStream.count:I
            iload 3 /* len */
            iadd
            putfield java.io.BufferedOutputStream.count:I
         8: .line 131
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.BufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/io/BufferedOutputStream;
            0    9     1     b  [B
            0    9     2   off  I
            0    9     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized void flush();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.BufferedOutputStream this
         0: .line 142
            aload 0 /* this */
            invokevirtual java.io.BufferedOutputStream.flushBuffer:()V
         1: .line 143
            aload 0 /* this */
            getfield java.io.BufferedOutputStream.out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         2: .line 144
            return
        end local 0 // java.io.BufferedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/BufferedOutputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "BufferedOutputStream.java"