public class sun.net.www.http.ChunkedInputStream extends java.io.InputStream implements sun.net.www.http.Hurryable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.net.www.http.ChunkedInputStream
  super_class: java.io.InputStream
{
  private java.io.InputStream in;
    descriptor: Ljava/io/InputStream;
    flags: (0x0002) ACC_PRIVATE

  private sun.net.www.http.HttpClient hc;
    descriptor: Lsun/net/www/http/HttpClient;
    flags: (0x0002) ACC_PRIVATE

  private sun.net.www.MessageHeader responses;
    descriptor: Lsun/net/www/MessageHeader;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  private void ensureOpen();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedInputStream this
         0: .line 174
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.closed:Z
            ifeq 2
         1: .line 175
            new java.io.IOException
            dup
            ldc "stream is closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 177
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/net/www/http/ChunkedInputStream;
    Exceptions:
      throws java.io.IOException

  private void ensureRawAvailable(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.net.www.http.ChunkedInputStream this
        start local 1 // int size
         0: .line 187
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            iload 1 /* size */
            iadd
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            arraylength
            if_icmple 12
         1: .line 188
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            isub
            istore 2 /* used */
        start local 2 // int used
         2: .line 189
            iload 2 /* used */
            iload 1 /* size */
            iadd
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            arraylength
            if_icmple 8
         3: .line 190
            iload 2 /* used */
            iload 1 /* size */
            iadd
            newarray 8
            astore 3 /* tmp */
        start local 3 // byte[] tmp
         4: .line 191
            iload 2 /* used */
            ifle 6
         5: .line 192
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            aload 3 /* tmp */
            iconst_0
            iload 2 /* used */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 194
      StackMap locals: int byte[]
      StackMap stack:
            aload 0 /* this */
            aload 3 /* tmp */
            putfield sun.net.www.http.ChunkedInputStream.rawData:[B
        end local 3 // byte[] tmp
         7: .line 195
            goto 10
         8: .line 196
      StackMap locals:
      StackMap stack:
            iload 2 /* used */
            ifle 10
         9: .line 197
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            iconst_0
            iload 2 /* used */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* used */
            putfield sun.net.www.http.ChunkedInputStream.rawCount:I
        11: .line 201
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.rawPos:I
        end local 2 // int used
        12: .line 203
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lsun/net/www/http/ChunkedInputStream;
            0   13     1  size  I
            2   12     2  used  I
            4    7     3   tmp  [B
    MethodParameters:
      Name  Flags
      size  

  private void closeUnderlying();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedInputStream this
         0: .line 215
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
            ifnonnull 2
         1: .line 216
            return
         2: .line 219
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.error:Z
            ifne 5
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_5
            if_icmpne 5
         3: .line 220
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.hc:Lsun/net/www/http/HttpClient;
            invokevirtual sun.net.www.http.HttpClient.finished:()V
         4: .line 221
            goto 7
         5: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.hurry:()Z
            ifne 7
         6: .line 223
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.hc:Lsun/net/www/http/HttpClient;
            invokevirtual sun.net.www.http.HttpClient.closeServer:()V
         7: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
         8: .line 228
            return
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/net/www/http/ChunkedInputStream;
    Exceptions:
      throws java.io.IOException

  private int fastRead(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // sun.net.www.http.ChunkedInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 240
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkSize:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkRead:I
            isub
            istore 4 /* remaining */
        start local 4 // int remaining
         1: .line 241
            iload 4 /* remaining */
            iload 3 /* len */
            if_icmpge 2
            iload 4 /* remaining */
            goto 3
      StackMap locals: int
      StackMap stack:
         2: iload 3 /* len */
      StackMap locals:
      StackMap stack: int
         3: istore 5 /* cnt */
        start local 5 // int cnt
         4: .line 242
            iload 5 /* cnt */
            ifle 17
         5: .line 245
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 5 /* cnt */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 6 /* nread */
        start local 6 // int nread
         6: .line 246
            goto 10
        end local 6 // int nread
      StackMap locals: sun.net.www.http.ChunkedInputStream byte[] int int int int
      StackMap stack: java.io.IOException
         7: astore 7 /* e */
        start local 7 // java.io.IOException e
         8: .line 247
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
         9: .line 248
            aload 7 /* e */
            athrow
        end local 7 // java.io.IOException e
        start local 6 // int nread
        10: .line 250
      StackMap locals: int
      StackMap stack:
            iload 6 /* nread */
            ifle 15
        11: .line 251
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.chunkRead:I
            iload 6 /* nread */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.chunkRead:I
        12: .line 252
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkRead:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkSize:I
            if_icmplt 14
        13: .line 253
            aload 0 /* this */
            iconst_3
            putfield sun.net.www.http.ChunkedInputStream.state:I
        14: .line 255
      StackMap locals:
      StackMap stack:
            iload 6 /* nread */
            ireturn
        15: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        16: .line 258
            new java.io.IOException
            dup
            ldc "Premature EOF"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 6 // int nread
        17: .line 260
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 5 // int cnt
        end local 4 // int remaining
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lsun/net/www/http/ChunkedInputStream;
            0   18     1          b  [B
            0   18     2        off  I
            0   18     3        len  I
            1   18     4  remaining  I
            4   18     5        cnt  I
            6    7     6      nread  I
           10   17     6      nread  I
            8   10     7          e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           5     6       7  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  private void processRaw();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=8, args_size=1
        start local 0 // sun.net.www.http.ChunkedInputStream this
         0: .line 281
            goto 94
         1: .line 283
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            tableswitch { // 1 - 4
                    1: 2
                    2: 34
                    3: 55
                    4: 66
              default: 94
          }
         2: .line 293
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            istore 1 /* pos */
        start local 1 // int pos
         3: .line 294
            goto 10
         4: .line 295
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            iload 1 /* pos */
            baload
            bipush 10
            if_icmpne 6
         5: .line 296
            goto 11
         6: .line 298
      StackMap locals:
      StackMap stack:
            iinc 1 /* pos */ 1
         7: .line 299
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            isub
            sipush 2050
            if_icmplt 10
         8: .line 300
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
         9: .line 301
            new java.io.IOException
            dup
            ldc "Chunk header too long"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 294
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 4
        11: .line 304
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 13
        12: .line 305
            return
        13: .line 311
      StackMap locals:
      StackMap stack:
            new java.lang.String
            dup
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            isub
            iconst_1
            iadd
        14: .line 312
            getstatic sun.nio.cs.US_ASCII.INSTANCE:Lsun/nio/cs/US_ASCII;
        15: .line 311
            invokespecial java.lang.String.<init>:([BIILjava/nio/charset/Charset;)V
            astore 3 /* header */
        start local 3 // java.lang.String header
        16: .line 313
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        17: goto 21
        18: .line 314
      StackMap locals: int java.lang.String
      StackMap stack:
            aload 3 /* header */
            iload 2 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            bipush 16
            invokestatic java.lang.Character.digit:(CI)I
            iconst_m1
            if_icmpne 20
        19: .line 315
            goto 22
        20: .line 313
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 2 /* i */
            aload 3 /* header */
            invokevirtual java.lang.String.length:()I
            if_icmplt 18
        22: .line 318
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* header */
            iconst_0
            iload 2 /* i */
            bipush 16
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/CharSequence;III)I
            putfield sun.net.www.http.ChunkedInputStream.chunkSize:I
        23: .line 319
            goto 27
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
        24: pop
        25: .line 320
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        26: .line 321
            new java.io.IOException
            dup
            ldc "Bogus chunk size"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        27: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* pos */
            iconst_1
            iadd
            putfield sun.net.www.http.ChunkedInputStream.rawPos:I
        28: .line 329
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.chunkRead:I
        29: .line 334
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkSize:I
            ifle 32
        30: .line 335
            aload 0 /* this */
            iconst_2
            putfield sun.net.www.http.ChunkedInputStream.state:I
        31: .line 336
            goto 94
        32: .line 337
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            putfield sun.net.www.http.ChunkedInputStream.state:I
        33: .line 339
            goto 94
        end local 3 // java.lang.String header
        end local 2 // int i
        end local 1 // int pos
        34: .line 349
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 36
        35: .line 350
            return
        36: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkSize:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkRead:I
            isub
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* copyLen */
        start local 4 // int copyLen
        37: .line 362
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            arraylength
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            iload 4 /* copyLen */
            iadd
            if_icmpge 47
        38: .line 363
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            isub
            istore 5 /* cnt */
        start local 5 // int cnt
        39: .line 364
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            arraylength
            iload 5 /* cnt */
            iload 4 /* copyLen */
            iadd
            if_icmpge 44
        40: .line 365
            iload 5 /* cnt */
            iload 4 /* copyLen */
            iadd
            newarray 8
            astore 6 /* tmp */
        start local 6 // byte[] tmp
        41: .line 366
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            aload 6 /* tmp */
            iconst_0
            iload 5 /* cnt */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        42: .line 367
            aload 0 /* this */
            aload 6 /* tmp */
            putfield sun.net.www.http.ChunkedInputStream.chunkData:[B
        end local 6 // byte[] tmp
        43: .line 368
            goto 45
        44: .line 369
      StackMap locals: sun.net.www.http.ChunkedInputStream top top top int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            iconst_0
            iload 5 /* cnt */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        45: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.chunkPos:I
        46: .line 372
            aload 0 /* this */
            iload 5 /* cnt */
            putfield sun.net.www.http.ChunkedInputStream.chunkCount:I
        end local 5 // int cnt
        47: .line 379
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            iload 4 /* copyLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        48: .line 380
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iload 4 /* copyLen */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.rawPos:I
        49: .line 381
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            iload 4 /* copyLen */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.chunkCount:I
        50: .line 382
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.chunkRead:I
            iload 4 /* copyLen */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.chunkRead:I
        51: .line 388
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkSize:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkRead:I
            isub
            ifgt 54
        52: .line 389
            aload 0 /* this */
            iconst_3
            putfield sun.net.www.http.ChunkedInputStream.state:I
        53: .line 390
            goto 94
        54: .line 391
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int copyLen
        55: .line 401
      StackMap locals: sun.net.www.http.ChunkedInputStream
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 57
        56: .line 402
            return
        57: .line 405
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            baload
            bipush 13
            if_icmpeq 60
        58: .line 406
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        59: .line 407
            new java.io.IOException
            dup
            ldc "missing CR"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        60: .line 409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iconst_1
            iadd
            baload
            bipush 10
            if_icmpeq 63
        61: .line 410
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        62: .line 411
            new java.io.IOException
            dup
            ldc "missing LF"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        63: .line 413
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iconst_2
            iadd
            putfield sun.net.www.http.ChunkedInputStream.rawPos:I
        64: .line 418
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.state:I
        65: .line 419
            goto 94
        66: .line 431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            istore 1 /* pos */
        start local 1 // int pos
        67: .line 432
            goto 71
        68: .line 433
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            iload 1 /* pos */
            baload
            bipush 10
            if_icmpne 70
        69: .line 434
            goto 72
        70: .line 436
      StackMap locals:
      StackMap stack:
            iinc 1 /* pos */ 1
        71: .line 432
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 68
        72: .line 438
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 74
        73: .line 439
            return
        74: .line 442
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            if_icmpne 77
        75: .line 443
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        76: .line 444
            new java.io.IOException
            dup
            ldc "LF should be proceeded by CR"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        77: .line 446
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            iload 1 /* pos */
            iconst_1
            isub
            baload
            bipush 13
            if_icmpeq 80
        78: .line 447
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        79: .line 448
            new java.io.IOException
            dup
            ldc "LF should be proceeded by CR"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        80: .line 454
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iconst_1
            iadd
            if_icmpne 84
        81: .line 456
            aload 0 /* this */
            iconst_5
            putfield sun.net.www.http.ChunkedInputStream.state:I
        82: .line 457
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.closeUnderlying:()V
        83: .line 459
            return
        84: .line 466
      StackMap locals:
      StackMap stack:
            new java.lang.String
            dup
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            isub
        85: .line 467
            getstatic sun.nio.cs.US_ASCII.INSTANCE:Lsun/nio/cs/US_ASCII;
        86: .line 466
            invokespecial java.lang.String.<init>:([BIILjava/nio/charset/Charset;)V
            astore 5 /* trailer */
        start local 5 // java.lang.String trailer
        87: .line 468
            aload 5 /* trailer */
            bipush 58
            invokevirtual java.lang.String.indexOf:(I)I
            istore 2 /* i */
        start local 2 // int i
        88: .line 469
            iload 2 /* i */
            iconst_m1
            if_icmpne 90
        89: .line 470
            new java.io.IOException
            dup
            ldc "Malformed tailer - format should be key:value"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        90: .line 472
      StackMap locals: sun.net.www.http.ChunkedInputStream int int top top java.lang.String
      StackMap stack:
            aload 5 /* trailer */
            iconst_0
            iload 2 /* i */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            astore 6 /* key */
        start local 6 // java.lang.String key
        91: .line 473
            aload 5 /* trailer */
            iload 2 /* i */
            iconst_1
            iadd
            aload 5 /* trailer */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            astore 7 /* value */
        start local 7 // java.lang.String value
        92: .line 475
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.responses:Lsun/net/www/MessageHeader;
            aload 6 /* key */
            aload 7 /* value */
            invokevirtual sun.net.www.MessageHeader.add:(Ljava/lang/String;Ljava/lang/String;)V
        93: .line 480
            aload 0 /* this */
            iload 1 /* pos */
            iconst_1
            iadd
            putfield sun.net.www.http.ChunkedInputStream.rawPos:I
        end local 7 // java.lang.String value
        end local 6 // java.lang.String key
        end local 5 // java.lang.String trailer
        end local 2 // int i
        end local 1 // int pos
        94: .line 281
      StackMap locals: sun.net.www.http.ChunkedInputStream
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_5
            if_icmpne 1
        95: .line 485
            return
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   96     0     this  Lsun/net/www/http/ChunkedInputStream;
            3   34     1      pos  I
           67   94     1      pos  I
           17   34     2        i  I
           88   94     2        i  I
           16   34     3   header  Ljava/lang/String;
           37   55     4  copyLen  I
           39   47     5      cnt  I
           41   43     6      tmp  [B
           87   94     5  trailer  Ljava/lang/String;
           91   94     6      key  Ljava/lang/String;
           92   94     7    value  Ljava/lang/String;
      Exception table:
        from    to  target  type
          22    23      24  Class java.lang.NumberFormatException
    Exceptions:
      throws java.io.IOException

  private int readAheadNonBlocking();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // sun.net.www.http.ChunkedInputStream this
         0: .line 501
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.available:()I
            istore 1 /* avail */
        start local 1 // int avail
         1: .line 502
            iload 1 /* avail */
            ifle 13
         2: .line 505
            aload 0 /* this */
            iload 1 /* avail */
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureRawAvailable:(I)V
         3: .line 509
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            iload 1 /* avail */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 2 /* nread */
        start local 2 // int nread
         4: .line 510
            goto 8
        end local 2 // int nread
      StackMap locals: sun.net.www.http.ChunkedInputStream int
      StackMap stack: java.io.IOException
         5: astore 3 /* e */
        start local 3 // java.io.IOException e
         6: .line 511
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
         7: .line 512
            aload 3 /* e */
            athrow
        end local 3 // java.io.IOException e
        start local 2 // int nread
         8: .line 514
      StackMap locals: int
      StackMap stack:
            iload 2 /* nread */
            ifge 11
         9: .line 515
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        10: .line 516
            iconst_m1
            ireturn
        11: .line 518
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            iload 2 /* nread */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.rawCount:I
        12: .line 523
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.processRaw:()V
        end local 2 // int nread
        13: .line 529
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            isub
            ireturn
        end local 1 // int avail
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lsun/net/www/http/ChunkedInputStream;
            1   14     1  avail  I
            4    5     2  nread  I
            8   13     2  nread  I
            6    8     3      e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           3     4       5  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  private int readAheadBlocking();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // sun.net.www.http.ChunkedInputStream this
         0: .line 543
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_5
            if_icmpne 2
         1: .line 544
            iconst_m1
            ireturn
         2: .line 552
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 32
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureRawAvailable:(I)V
         3: .line 555
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            arraylength
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            isub
            invokevirtual java.io.InputStream.read:([BII)I
            istore 1 /* nread */
        start local 1 // int nread
         4: .line 556
            goto 8
        end local 1 // int nread
      StackMap locals:
      StackMap stack: java.io.IOException
         5: astore 2 /* e */
        start local 2 // java.io.IOException e
         6: .line 557
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
         7: .line 558
            aload 2 /* e */
            athrow
        end local 2 // java.io.IOException e
        start local 1 // int nread
         8: .line 566
      StackMap locals: int
      StackMap stack:
            iload 1 /* nread */
            ifge 11
         9: .line 567
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        10: .line 568
            new java.io.IOException
            dup
            ldc "Premature EOF"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 574
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            iload 1 /* nread */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.rawCount:I
        12: .line 575
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.processRaw:()V
        end local 1 // int nread
        13: .line 577
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
        14: .line 539
            ifle 0
        15: .line 582
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            isub
            ireturn
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lsun/net/www/http/ChunkedInputStream;
            4    5     1  nread  I
            8   13     1  nread  I
            6    8     2      e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           3     4       5  Class java.io.IOException
    Exceptions:
      throws java.io.IOException

  private int readAhead(boolean);
    descriptor: (Z)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.net.www.http.ChunkedInputStream this
        start local 1 // boolean allowBlocking
         0: .line 596
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_5
            if_icmpne 2
         1: .line 597
            iconst_m1
            ireturn
         2: .line 603
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            if_icmplt 5
         3: .line 604
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.chunkCount:I
         4: .line 605
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.chunkPos:I
         5: .line 611
      StackMap locals:
      StackMap stack:
            iload 1 /* allowBlocking */
            ifeq 7
         6: .line 612
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.readAheadBlocking:()I
            ireturn
         7: .line 614
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.readAheadNonBlocking:()I
            ireturn
        end local 1 // boolean allowBlocking
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lsun/net/www/http/ChunkedInputStream;
            0    8     1  allowBlocking  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      allowBlocking  

  public void <init>(java.io.InputStream, sun.net.www.http.HttpClient, sun.net.www.MessageHeader);
    descriptor: (Ljava/io/InputStream;Lsun/net/www/http/HttpClient;Lsun/net/www/MessageHeader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // sun.net.www.http.ChunkedInputStream this
        start local 1 // java.io.InputStream in
        start local 2 // sun.net.www.http.HttpClient hc
        start local 3 // sun.net.www.MessageHeader responses
         0: .line 627
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 82
            aload 0 /* this */
            sipush 4096
            newarray 8
            putfield sun.net.www.http.ChunkedInputStream.chunkData:[B
         2: .line 102
            aload 0 /* this */
            bipush 32
            newarray 8
            putfield sun.net.www.http.ChunkedInputStream.rawData:[B
         3: .line 630
            aload 0 /* this */
            aload 1 /* in */
            putfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
         4: .line 631
            aload 0 /* this */
            aload 3 /* responses */
            putfield sun.net.www.http.ChunkedInputStream.responses:Lsun/net/www/MessageHeader;
         5: .line 632
            aload 0 /* this */
            aload 2 /* hc */
            putfield sun.net.www.http.ChunkedInputStream.hc:Lsun/net/www/http/HttpClient;
         6: .line 638
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.state:I
         7: .line 639
            return
        end local 3 // sun.net.www.MessageHeader responses
        end local 2 // sun.net.www.http.HttpClient hc
        end local 1 // java.io.InputStream in
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lsun/net/www/http/ChunkedInputStream;
            0    8     1         in  Ljava/io/InputStream;
            0    8     2         hc  Lsun/net/www/http/HttpClient;
            0    8     3  responses  Lsun/net/www/MessageHeader;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      in         
      hc         
      responses  

  public synchronized int read();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedInputStream this
         0: .line 652
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureOpen:()V
         1: .line 653
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            if_icmplt 4
         2: .line 654
            aload 0 /* this */
            iconst_1
            invokevirtual sun.net.www.http.ChunkedInputStream.readAhead:(Z)I
            ifgt 4
         3: .line 655
            iconst_m1
            ireturn
         4: .line 658
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            baload
            sipush 255
            iand
            ireturn
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/net/www/http/ChunkedInputStream;
    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=6, args_size=4
        start local 0 // sun.net.www.http.ChunkedInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 676
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureOpen:()V
         1: .line 677
            iload 2 /* off */
            iflt 3
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            if_icmpgt 3
            iload 3 /* len */
            iflt 3
         2: .line 678
            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 679
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 680
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 6
         5: .line 681
            iconst_0
            ireturn
         6: .line 684
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            isub
            istore 4 /* avail */
        start local 4 // int avail
         7: .line 685
            iload 4 /* avail */
            ifgt 13
         8: .line 691
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_2
            if_icmpne 10
         9: .line 692
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual sun.net.www.http.ChunkedInputStream.fastRead:([BII)I
            ireturn
        10: .line 699
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual sun.net.www.http.ChunkedInputStream.readAhead:(Z)I
            istore 4 /* avail */
        11: .line 700
            iload 4 /* avail */
            ifge 13
        12: .line 701
            iconst_m1
            ireturn
        13: .line 704
      StackMap locals:
      StackMap stack:
            iload 4 /* avail */
            iload 3 /* len */
            if_icmpge 14
            iload 4 /* avail */
            goto 15
      StackMap locals:
      StackMap stack:
        14: iload 3 /* len */
      StackMap locals:
      StackMap stack: int
        15: istore 5 /* cnt */
        start local 5 // int cnt
        16: .line 705
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            aload 1 /* b */
            iload 2 /* off */
            iload 5 /* cnt */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        17: .line 706
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            iload 5 /* cnt */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.chunkPos:I
        18: .line 708
            iload 5 /* cnt */
            ireturn
        end local 5 // int cnt
        end local 4 // int avail
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lsun/net/www/http/ChunkedInputStream;
            0   19     1      b  [B
            0   19     2    off  I
            0   19     3    len  I
            7   19     4  avail  I
           16   19     5    cnt  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized int available();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.net.www.http.ChunkedInputStream this
         0: .line 721
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureOpen:()V
         1: .line 723
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkPos:I
            isub
            istore 1 /* avail */
        start local 1 // int avail
         2: .line 724
            iload 1 /* avail */
            ifle 4
         3: .line 725
            iload 1 /* avail */
            ireturn
         4: .line 728
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.net.www.http.ChunkedInputStream.readAhead:(Z)I
            istore 1 /* avail */
         5: .line 730
            iload 1 /* avail */
            ifge 7
         6: .line 731
            iconst_0
            ireturn
         7: .line 733
      StackMap locals:
      StackMap stack:
            iload 1 /* avail */
            ireturn
        end local 1 // int avail
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lsun/net/www/http/ChunkedInputStream;
            2    8     1  avail  I
    Exceptions:
      throws java.io.IOException

  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.ChunkedInputStream this
         0: .line 749
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.closed:Z
            ifeq 2
         1: .line 750
            return
         2: .line 752
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.closeUnderlying:()V
         3: .line 753
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.closed:Z
         4: .line 754
            return
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/net/www/http/ChunkedInputStream;
    Exceptions:
      throws java.io.IOException

  public synchronized boolean hurry();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.net.www.http.ChunkedInputStream this
         0: .line 766
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
            ifnull 1
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.error:Z
            ifeq 2
         1: .line 767
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 771
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.net.www.http.ChunkedInputStream.readAhead:(Z)I
            pop
         3: .line 772
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         4: pop
         5: .line 773
            iconst_0
            ireturn
         6: .line 776
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.error:Z
            ifeq 8
         7: .line 777
            iconst_0
            ireturn
         8: .line 780
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_5
            if_icmpne 9
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         9: iconst_0
            ireturn
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/net/www/http/ChunkedInputStream;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Exception
}
SourceFile: "ChunkedInputStream.java"