public class sun.net.www.http.ChunkedOutputStream extends java.io.PrintStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.net.www.http.ChunkedOutputStream
  super_class: java.io.PrintStream
{
  static final int DEFAULT_CHUNK_SIZE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 4096

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

  private static final int CRLF_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  private static final int FOOTER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  private static final int EMPTY_CHUNK_HEADER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private byte[] buf;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int size;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int count;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int spaceInCurrentChunk;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.io.PrintStream out;
    descriptor: Ljava/io/PrintStream;
    flags: (0x0002) ACC_PRIVATE

  private int preferredChunkDataSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int preferedHeaderSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int preferredChunkGrossSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private byte[] completeHeader;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 37
            iconst_2
            newarray 8
            dup
            iconst_0
            bipush 13
            bastore
            dup
            iconst_1
            bipush 10
            bastore
            putstatic sun.net.www.http.ChunkedOutputStream.CRLF:[B
         1: .line 38
            getstatic sun.net.www.http.ChunkedOutputStream.CRLF:[B
            arraylength
            putstatic sun.net.www.http.ChunkedOutputStream.CRLF_SIZE:I
         2: .line 39
            getstatic sun.net.www.http.ChunkedOutputStream.CRLF:[B
            putstatic sun.net.www.http.ChunkedOutputStream.FOOTER:[B
         3: .line 40
            getstatic sun.net.www.http.ChunkedOutputStream.CRLF_SIZE:I
            putstatic sun.net.www.http.ChunkedOutputStream.FOOTER_SIZE:I
         4: .line 41
            iconst_0
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeader:(I)[B
            putstatic sun.net.www.http.ChunkedOutputStream.EMPTY_CHUNK_HEADER:[B
         5: .line 42
            iconst_0
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
            putstatic sun.net.www.http.ChunkedOutputStream.EMPTY_CHUNK_HEADER_SIZE:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static int getHeaderSize(int);
    descriptor: (I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int size
         0: .line 66
            iload 0 /* size */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            getstatic sun.net.www.http.ChunkedOutputStream.CRLF_SIZE:I
            iadd
            ireturn
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  size  I
    MethodParameters:
      Name  Flags
      size  

  private static byte[] getHeader(int);
    descriptor: (I)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // int size
         0: .line 72
            iload 0 /* size */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            astore 1 /* hexStr */
        start local 1 // java.lang.String hexStr
         1: .line 73
            aload 1 /* hexStr */
            ldc "US-ASCII"
            invokevirtual java.lang.String.getBytes:(Ljava/lang/String;)[B
            astore 2 /* hexBytes */
        start local 2 // byte[] hexBytes
         2: .line 74
            iload 0 /* size */
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
            newarray 8
            astore 3 /* header */
        start local 3 // byte[] header
         3: .line 75
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 76
      StackMap locals: int java.lang.String byte[] byte[] int
      StackMap stack:
            aload 3 /* header */
            iload 4 /* i */
            aload 2 /* hexBytes */
            iload 4 /* i */
            baload
            bastore
         6: .line 75
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            aload 2 /* hexBytes */
            arraylength
            if_icmplt 5
        end local 4 // int i
         8: .line 77
            aload 3 /* header */
            aload 2 /* hexBytes */
            arraylength
            getstatic sun.net.www.http.ChunkedOutputStream.CRLF:[B
            iconst_0
            baload
            bastore
         9: .line 78
            aload 3 /* header */
            aload 2 /* hexBytes */
            arraylength
            iconst_1
            iadd
            getstatic sun.net.www.http.ChunkedOutputStream.CRLF:[B
            iconst_1
            baload
            bastore
        10: .line 79
            aload 3 /* header */
        11: areturn
        end local 3 // byte[] header
        end local 2 // byte[] hexBytes
        end local 1 // java.lang.String hexStr
        12: .line 80
      StackMap locals: int
      StackMap stack: java.io.UnsupportedEncodingException
            astore 1 /* e */
        start local 1 // java.io.UnsupportedEncodingException e
        13: .line 82
            new java.lang.InternalError
            dup
            aload 1 /* e */
            invokevirtual java.io.UnsupportedEncodingException.getMessage:()Ljava/lang/String;
            aload 1 /* e */
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.UnsupportedEncodingException e
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      size  I
            1   12     1    hexStr  Ljava/lang/String;
            2   12     2  hexBytes  [B
            3   12     3    header  [B
            4    8     4         i  I
           13   14     1         e  Ljava/io/UnsupportedEncodingException;
      Exception table:
        from    to  target  type
           0    11      12  Class java.io.UnsupportedEncodingException
    MethodParameters:
      Name  Flags
      size  

  public void <init>(java.io.PrintStream);
    descriptor: (Ljava/io/PrintStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.net.www.http.ChunkedOutputStream this
        start local 1 // java.io.PrintStream o
         0: .line 87
            aload 0 /* this */
            aload 1 /* o */
            sipush 4096
            invokespecial sun.net.www.http.ChunkedOutputStream.<init>:(Ljava/io/PrintStream;I)V
         1: .line 88
            return
        end local 1 // java.io.PrintStream o
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/net/www/http/ChunkedOutputStream;
            0    2     1     o  Ljava/io/PrintStream;
    MethodParameters:
      Name  Flags
      o     

  public void <init>(java.io.PrintStream, int);
    descriptor: (Ljava/io/PrintStream;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.net.www.http.ChunkedOutputStream this
        start local 1 // java.io.PrintStream o
        start local 2 // int size
         0: .line 91
            aload 0 /* this */
            aload 1 /* o */
            invokespecial java.io.PrintStream.<init>:(Ljava/io/OutputStream;)V
         1: .line 92
            aload 0 /* this */
            aload 1 /* o */
            putfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
         2: .line 94
            iload 2 /* size */
            ifgt 4
         3: .line 95
            sipush 4096
            istore 2 /* size */
         4: .line 107
      StackMap locals: sun.net.www.http.ChunkedOutputStream java.io.PrintStream int
      StackMap stack:
            iload 2 /* size */
            ifle 9
         5: .line 108
            iload 2 /* size */
            iload 2 /* size */
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
            isub
            getstatic sun.net.www.http.ChunkedOutputStream.FOOTER_SIZE:I
            isub
            istore 3 /* adjusted_size */
        start local 3 // int adjusted_size
         6: .line 109
            iload 3 /* adjusted_size */
            iconst_1
            iadd
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
            iload 2 /* size */
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
            if_icmpge 8
         7: .line 110
            iinc 3 /* adjusted_size */ 1
         8: .line 112
      StackMap locals: int
      StackMap stack:
            iload 3 /* adjusted_size */
            istore 2 /* size */
        end local 3 // int adjusted_size
         9: .line 115
      StackMap locals:
      StackMap stack:
            iload 2 /* size */
            ifle 12
        10: .line 116
            aload 0 /* this */
            iload 2 /* size */
            putfield sun.net.www.http.ChunkedOutputStream.preferredChunkDataSize:I
        11: .line 117
            goto 15
        12: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            sipush 4096
        13: .line 119
            sipush 4096
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
            isub
            getstatic sun.net.www.http.ChunkedOutputStream.FOOTER_SIZE:I
            isub
        14: .line 118
            putfield sun.net.www.http.ChunkedOutputStream.preferredChunkDataSize:I
        15: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferredChunkDataSize:I
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
            putfield sun.net.www.http.ChunkedOutputStream.preferedHeaderSize:I
        16: .line 123
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferedHeaderSize:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferredChunkDataSize:I
            iadd
        17: .line 124
            getstatic sun.net.www.http.ChunkedOutputStream.FOOTER_SIZE:I
            iadd
        18: .line 123
            putfield sun.net.www.http.ChunkedOutputStream.preferredChunkGrossSize:I
        19: .line 125
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferredChunkDataSize:I
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeader:(I)[B
            putfield sun.net.www.http.ChunkedOutputStream.completeHeader:[B
        20: .line 128
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferredChunkGrossSize:I
            newarray 8
            putfield sun.net.www.http.ChunkedOutputStream.buf:[B
        21: .line 129
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedOutputStream.reset:()V
        22: .line 130
            return
        end local 2 // int size
        end local 1 // java.io.PrintStream o
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lsun/net/www/http/ChunkedOutputStream;
            0   23     1              o  Ljava/io/PrintStream;
            0   23     2           size  I
            6    9     3  adjusted_size  I
    MethodParameters:
      Name  Flags
      o     
      size  

  private void flush(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.net.www.http.ChunkedOutputStream this
        start local 1 // boolean flushAll
         0: .line 143
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
            ifne 5
         1: .line 145
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            iconst_0
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferredChunkGrossSize:I
            invokevirtual java.io.PrintStream.write:([BII)V
         2: .line 146
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
            invokevirtual java.io.PrintStream.flush:()V
         3: .line 147
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedOutputStream.reset:()V
         4: .line 148
            goto 20
      StackMap locals:
      StackMap stack:
         5: iload 1 /* flushAll */
            ifeq 20
         6: .line 150
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.size:I
            ifle 17
         7: .line 154
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferedHeaderSize:I
         8: .line 155
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.size:I
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
         9: .line 154
            isub
            istore 2 /* adjustedHeaderStartIndex */
        start local 2 // int adjustedHeaderStartIndex
        10: .line 158
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.size:I
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeader:(I)[B
            iconst_0
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
        11: .line 159
            iload 2 /* adjustedHeaderStartIndex */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.size:I
            invokestatic sun.net.www.http.ChunkedOutputStream.getHeaderSize:(I)I
        12: .line 158
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 162
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            dup_x1
            iconst_1
            iadd
            putfield sun.net.www.http.ChunkedOutputStream.count:I
            getstatic sun.net.www.http.ChunkedOutputStream.FOOTER:[B
            iconst_0
            baload
            bastore
        14: .line 163
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            dup_x1
            iconst_1
            iadd
            putfield sun.net.www.http.ChunkedOutputStream.count:I
            getstatic sun.net.www.http.ChunkedOutputStream.FOOTER:[B
            iconst_1
            baload
            bastore
        15: .line 166
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            iload 2 /* adjustedHeaderStartIndex */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            iload 2 /* adjustedHeaderStartIndex */
            isub
            invokevirtual java.io.PrintStream.write:([BII)V
        end local 2 // int adjustedHeaderStartIndex
        16: .line 167
            goto 18
        17: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
            getstatic sun.net.www.http.ChunkedOutputStream.EMPTY_CHUNK_HEADER:[B
            iconst_0
            getstatic sun.net.www.http.ChunkedOutputStream.EMPTY_CHUNK_HEADER_SIZE:I
            invokevirtual java.io.PrintStream.write:([BII)V
        18: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
            invokevirtual java.io.PrintStream.flush:()V
        19: .line 173
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedOutputStream.reset:()V
        20: .line 175
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean flushAll
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   21     0                      this  Lsun/net/www/http/ChunkedOutputStream;
            0   21     1                  flushAll  Z
           10   16     2  adjustedHeaderStartIndex  I
    MethodParameters:
          Name  Flags
      flushAll  

  public boolean checkError();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedOutputStream this
         0: .line 179
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
            invokevirtual java.io.PrintStream.checkError:()Z
            ireturn
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/http/ChunkedOutputStream;

  private void ensureOpen();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedOutputStream this
         0: .line 184
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
            ifnonnull 2
         1: .line 185
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedOutputStream.setError:()V
         2: .line 186
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/net/www/http/ChunkedOutputStream;

  public synchronized void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // sun.net.www.http.ChunkedOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 201
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedOutputStream.ensureOpen:()V
         1: .line 202
            iload 2 /* off */
            iflt 3
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            if_icmpgt 3
            iload 3 /* len */
            iflt 3
         2: .line 203
            iload 2 /* off */
            iload 3 /* len */
            iadd
            aload 1 /* b */
            arraylength
            if_icmpgt 3
            iload 2 /* off */
            iload 3 /* len */
            iadd
            ifge 4
         3: .line 204
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 205
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 6
         5: .line 206
            return
         6: .line 215
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            istore 4 /* bytesToWrite */
        start local 4 // int bytesToWrite
         7: .line 216
            iload 2 /* off */
            istore 5 /* inputIndex */
        start local 5 // int inputIndex
         8: .line 220
      StackMap locals: int int
      StackMap stack:
            iload 4 /* bytesToWrite */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
            if_icmplt 24
         9: .line 223
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        10: goto 13
        11: .line 224
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            iload 6 /* i */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.completeHeader:[B
            iload 6 /* i */
            baload
            bastore
        12: .line 223
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 6 /* i */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.completeHeader:[B
            arraylength
            if_icmplt 11
        end local 6 // int i
        14: .line 227
            aload 1 /* b */
            iload 5 /* inputIndex */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 228
            iload 5 /* inputIndex */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
            iadd
            istore 5 /* inputIndex */
        16: .line 229
            iload 4 /* bytesToWrite */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
            isub
            istore 4 /* bytesToWrite */
        17: .line 230
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
            iadd
            putfield sun.net.www.http.ChunkedOutputStream.count:I
        18: .line 233
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            dup_x1
            iconst_1
            iadd
            putfield sun.net.www.http.ChunkedOutputStream.count:I
            getstatic sun.net.www.http.ChunkedOutputStream.FOOTER:[B
            iconst_0
            baload
            bastore
        19: .line 234
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            dup_x1
            iconst_1
            iadd
            putfield sun.net.www.http.ChunkedOutputStream.count:I
            getstatic sun.net.www.http.ChunkedOutputStream.FOOTER:[B
            iconst_1
            baload
            bastore
        20: .line 235
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
        21: .line 237
            aload 0 /* this */
            iconst_0
            invokevirtual sun.net.www.http.ChunkedOutputStream.flush:(Z)V
        22: .line 238
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedOutputStream.checkError:()Z
            ifeq 29
        23: .line 239
            goto 31
        24: .line 249
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 5 /* inputIndex */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.buf:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            iload 4 /* bytesToWrite */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        25: .line 250
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedOutputStream.count:I
            iload 4 /* bytesToWrite */
            iadd
            putfield sun.net.www.http.ChunkedOutputStream.count:I
        26: .line 251
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedOutputStream.size:I
            iload 4 /* bytesToWrite */
            iadd
            putfield sun.net.www.http.ChunkedOutputStream.size:I
        27: .line 252
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
            iload 4 /* bytesToWrite */
            isub
            putfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
        28: .line 253
            iconst_0
            istore 4 /* bytesToWrite */
        29: .line 258
      StackMap locals:
      StackMap stack:
            iload 4 /* bytesToWrite */
        30: .line 218
            ifgt 8
        31: .line 259
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int inputIndex
        end local 4 // int bytesToWrite
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   32     0          this  Lsun/net/www/http/ChunkedOutputStream;
            0   32     1             b  [B
            0   32     2           off  I
            0   32     3           len  I
            7   32     4  bytesToWrite  I
            8   32     5    inputIndex  I
           10   14     6             i  I
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized void write(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.net.www.http.ChunkedOutputStream this
        start local 1 // int _b
         0: .line 263
            iconst_1
            newarray 8
            dup
            iconst_0
            iload 1 /* _b */
            i2b
            bastore
            astore 2 /* b */
        start local 2 // byte[] b
         1: .line 264
            aload 0 /* this */
            aload 2 /* b */
            iconst_0
            iconst_1
            invokevirtual sun.net.www.http.ChunkedOutputStream.write:([BII)V
         2: .line 265
            return
        end local 2 // byte[] b
        end local 1 // int _b
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/net/www/http/ChunkedOutputStream;
            0    3     1    _b  I
            1    3     2     b  [B
    MethodParameters:
      Name  Flags
      _b    

  public synchronized void reset();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedOutputStream this
         0: .line 268
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferedHeaderSize:I
            putfield sun.net.www.http.ChunkedOutputStream.count:I
         1: .line 269
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedOutputStream.size:I
         2: .line 270
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.preferredChunkDataSize:I
            putfield sun.net.www.http.ChunkedOutputStream.spaceInCurrentChunk:I
         3: .line 271
            return
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/net/www/http/ChunkedOutputStream;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedOutputStream this
         0: .line 274
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.size:I
            ireturn
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/http/ChunkedOutputStream;

  public synchronized void close();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedOutputStream this
         0: .line 279
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedOutputStream.ensureOpen:()V
         1: .line 282
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.size:I
            ifle 3
         2: .line 283
            aload 0 /* this */
            iconst_1
            invokevirtual sun.net.www.http.ChunkedOutputStream.flush:(Z)V
         3: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual sun.net.www.http.ChunkedOutputStream.flush:(Z)V
         4: .line 290
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.ChunkedOutputStream.out:Ljava/io/PrintStream;
         5: .line 291
            return
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/net/www/http/ChunkedOutputStream;

  public synchronized void flush();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedOutputStream this
         0: .line 295
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedOutputStream.ensureOpen:()V
         1: .line 296
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedOutputStream.size:I
            ifle 3
         2: .line 297
            aload 0 /* this */
            iconst_1
            invokevirtual sun.net.www.http.ChunkedOutputStream.flush:(Z)V
         3: .line 299
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.net.www.http.ChunkedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/net/www/http/ChunkedOutputStream;
}
SourceFile: "ChunkedOutputStream.java"