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 173
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.closed:Z
            ifeq 2
         1: .line 174
            new java.io.IOException
            dup
            ldc "stream is closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 176
      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 186
            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 187
            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 188
            iload 2 /* used */
            iload 1 /* size */
            iadd
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            arraylength
            if_icmple 8
         3: .line 189
            iload 2 /* used */
            iload 1 /* size */
            iadd
            newarray 8
            astore 3 /* tmp */
        start local 3 // byte[] tmp
         4: .line 190
            iload 2 /* used */
            ifle 6
         5: .line 191
            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 193
      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 194
            goto 10
         8: .line 195
      StackMap locals:
      StackMap stack:
            iload 2 /* used */
            ifle 10
         9: .line 196
            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 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* used */
            putfield sun.net.www.http.ChunkedInputStream.rawCount:I
        11: .line 200
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.rawPos:I
        end local 2 // int used
        12: .line 202
      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 214
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
            ifnonnull 2
         1: .line 215
            return
         2: .line 218
      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 219
            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 220
            goto 7
         5: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.hurry:()Z
            ifne 7
         6: .line 222
            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 226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
         8: .line 227
            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 239
            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 240
            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 241
            iload 5 /* cnt */
            ifle 17
         5: .line 244
            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 245
            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 246
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
         9: .line 247
            aload 7 /* e */
            athrow
        end local 7 // java.io.IOException e
        start local 6 // int nread
        10: .line 249
      StackMap locals: int
      StackMap stack:
            iload 6 /* nread */
            ifle 15
        11: .line 250
            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 251
            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 252
            aload 0 /* this */
            iconst_3
            putfield sun.net.www.http.ChunkedInputStream.state:I
        14: .line 254
      StackMap locals:
      StackMap stack:
            iload 6 /* nread */
            ireturn
        15: .line 256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        16: .line 257
            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 259
      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 280
            goto 90
         1: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            tableswitch { // 1 - 4
                    1: 2
                    2: 32
                    3: 53
                    4: 64
              default: 90
          }
         2: .line 292
      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 293
            goto 10
         4: .line 294
      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 295
            goto 11
         6: .line 297
      StackMap locals:
      StackMap stack:
            iinc 1 /* pos */ 1
         7: .line 298
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            isub
            sipush 2050
            if_icmplt 10
         8: .line 299
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
         9: .line 300
            new java.io.IOException
            dup
            ldc "Chunk header too long"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 293
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 4
        11: .line 303
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 13
        12: .line 304
            return
        13: .line 310
      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
            ldc "US-ASCII"
            invokespecial java.lang.String.<init>:([BIILjava/lang/String;)V
            astore 3 /* header */
        start local 3 // java.lang.String header
        14: .line 311
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        15: goto 19
        16: .line 312
      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 18
        17: .line 313
            goto 20
        18: .line 311
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 2 /* i */
            aload 3 /* header */
            invokevirtual java.lang.String.length:()I
            if_icmplt 16
        20: .line 316
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* header */
            iconst_0
            iload 2 /* i */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            bipush 16
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;I)I
            putfield sun.net.www.http.ChunkedInputStream.chunkSize:I
        21: .line 317
            goto 25
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
        22: pop
        23: .line 318
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        24: .line 319
            new java.io.IOException
            dup
            ldc "Bogus chunk size"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        25: .line 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* pos */
            iconst_1
            iadd
            putfield sun.net.www.http.ChunkedInputStream.rawPos:I
        26: .line 327
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.chunkRead:I
        27: .line 332
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkSize:I
            ifle 30
        28: .line 333
            aload 0 /* this */
            iconst_2
            putfield sun.net.www.http.ChunkedInputStream.state:I
        29: .line 334
            goto 90
        30: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            putfield sun.net.www.http.ChunkedInputStream.state:I
        31: .line 337
            goto 90
        end local 3 // java.lang.String header
        end local 2 // int i
        end local 1 // int pos
        32: .line 347
      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 34
        33: .line 348
            return
        34: .line 355
      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
        35: .line 360
            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 45
        36: .line 361
            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
        37: .line 362
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkData:[B
            arraylength
            iload 5 /* cnt */
            iload 4 /* copyLen */
            iadd
            if_icmpge 42
        38: .line 363
            iload 5 /* cnt */
            iload 4 /* copyLen */
            iadd
            newarray 8
            astore 6 /* tmp */
        start local 6 // byte[] tmp
        39: .line 364
            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
        40: .line 365
            aload 0 /* this */
            aload 6 /* tmp */
            putfield sun.net.www.http.ChunkedInputStream.chunkData:[B
        end local 6 // byte[] tmp
        41: .line 366
            goto 43
        42: .line 367
      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
        43: .line 369
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.chunkPos:I
        44: .line 370
            aload 0 /* this */
            iload 5 /* cnt */
            putfield sun.net.www.http.ChunkedInputStream.chunkCount:I
        end local 5 // int cnt
        45: .line 377
      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
        46: .line 378
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iload 4 /* copyLen */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.rawPos:I
        47: .line 379
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
            iload 4 /* copyLen */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.chunkCount:I
        48: .line 380
            aload 0 /* this */
            dup
            getfield sun.net.www.http.ChunkedInputStream.chunkRead:I
            iload 4 /* copyLen */
            iadd
            putfield sun.net.www.http.ChunkedInputStream.chunkRead:I
        49: .line 386
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkSize:I
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkRead:I
            isub
            ifgt 52
        50: .line 387
            aload 0 /* this */
            iconst_3
            putfield sun.net.www.http.ChunkedInputStream.state:I
        51: .line 388
            goto 90
        52: .line 389
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int copyLen
        53: .line 399
      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 55
        54: .line 400
            return
        55: .line 403
      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 58
        56: .line 404
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        57: .line 405
            new java.io.IOException
            dup
            ldc "missing CR"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        58: .line 407
      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 61
        59: .line 408
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        60: .line 409
            new java.io.IOException
            dup
            ldc "missing LF"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        61: .line 411
      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
        62: .line 416
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.state:I
        63: .line 417
            goto 90
        64: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            istore 1 /* pos */
        start local 1 // int pos
        65: .line 430
            goto 69
        66: .line 431
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawData:[B
            iload 1 /* pos */
            baload
            bipush 10
            if_icmpne 68
        67: .line 432
            goto 70
        68: .line 434
      StackMap locals:
      StackMap stack:
            iinc 1 /* pos */ 1
        69: .line 430
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 66
        70: .line 436
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawCount:I
            if_icmplt 72
        71: .line 437
            return
        72: .line 440
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            if_icmpne 75
        73: .line 441
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        74: .line 442
            new java.io.IOException
            dup
            ldc "LF should be proceeded by CR"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        75: .line 444
      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 78
        76: .line 445
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        77: .line 446
            new java.io.IOException
            dup
            ldc "LF should be proceeded by CR"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        78: .line 452
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.rawPos:I
            iconst_1
            iadd
            if_icmpne 82
        79: .line 454
            aload 0 /* this */
            iconst_5
            putfield sun.net.www.http.ChunkedInputStream.state:I
        80: .line 455
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.closeUnderlying:()V
        81: .line 457
            return
        82: .line 464
      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
            ldc "US-ASCII"
            invokespecial java.lang.String.<init>:([BIILjava/lang/String;)V
            astore 5 /* trailer */
        start local 5 // java.lang.String trailer
        83: .line 465
            aload 5 /* trailer */
            bipush 58
            invokevirtual java.lang.String.indexOf:(I)I
            istore 2 /* i */
        start local 2 // int i
        84: .line 466
            iload 2 /* i */
            iconst_m1
            if_icmpne 86
        85: .line 467
            new java.io.IOException
            dup
            ldc "Malformed tailer - format should be key:value"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        86: .line 469
      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
        87: .line 470
            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
        88: .line 472
            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
        89: .line 477
            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
        90: .line 280
      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
        91: .line 482
            return
        end local 0 // sun.net.www.http.ChunkedInputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   92     0     this  Lsun/net/www/http/ChunkedInputStream;
            3   32     1      pos  I
           65   90     1      pos  I
           15   32     2        i  I
           84   90     2        i  I
           14   32     3   header  Ljava/lang/String;
           35   53     4  copyLen  I
           37   45     5      cnt  I
           39   41     6      tmp  [B
           83   90     5  trailer  Ljava/lang/String;
           87   90     6      key  Ljava/lang/String;
           88   90     7    value  Ljava/lang/String;
      Exception table:
        from    to  target  type
          20    21      22  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 498
            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 499
            iload 1 /* avail */
            ifle 13
         2: .line 502
            aload 0 /* this */
            iload 1 /* avail */
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureRawAvailable:(I)V
         3: .line 506
            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 507
            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 508
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
         7: .line 509
            aload 3 /* e */
            athrow
        end local 3 // java.io.IOException e
        start local 2 // int nread
         8: .line 511
      StackMap locals: int
      StackMap stack:
            iload 2 /* nread */
            ifge 11
         9: .line 512
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        10: .line 513
            iconst_m1
            ireturn
        11: .line 515
      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 520
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.processRaw:()V
        end local 2 // int nread
        13: .line 526
      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 540
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_5
            if_icmpne 2
         1: .line 541
            iconst_m1
            ireturn
         2: .line 549
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 32
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureRawAvailable:(I)V
         3: .line 552
            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 553
            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 554
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
         7: .line 555
            aload 2 /* e */
            athrow
        end local 2 // java.io.IOException e
        start local 1 // int nread
         8: .line 563
      StackMap locals: int
      StackMap stack:
            iload 1 /* nread */
            ifge 11
         9: .line 564
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.error:Z
        10: .line 565
            new java.io.IOException
            dup
            ldc "Premature EOF"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 571
      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 572
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.processRaw:()V
        end local 1 // int nread
        13: .line 574
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.chunkCount:I
        14: .line 536
            ifle 0
        15: .line 579
            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 593
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_5
            if_icmpne 2
         1: .line 594
            iconst_m1
            ireturn
         2: .line 600
      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 601
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.chunkCount:I
         4: .line 602
            aload 0 /* this */
            iconst_0
            putfield sun.net.www.http.ChunkedInputStream.chunkPos:I
         5: .line 608
      StackMap locals:
      StackMap stack:
            iload 1 /* allowBlocking */
            ifeq 7
         6: .line 609
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.readAheadBlocking:()I
            ireturn
         7: .line 611
      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 624
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 81
            aload 0 /* this */
            sipush 4096
            newarray 8
            putfield sun.net.www.http.ChunkedInputStream.chunkData:[B
         2: .line 101
            aload 0 /* this */
            bipush 32
            newarray 8
            putfield sun.net.www.http.ChunkedInputStream.rawData:[B
         3: .line 627
            aload 0 /* this */
            aload 1 /* in */
            putfield sun.net.www.http.ChunkedInputStream.in:Ljava/io/InputStream;
         4: .line 628
            aload 0 /* this */
            aload 3 /* responses */
            putfield sun.net.www.http.ChunkedInputStream.responses:Lsun/net/www/MessageHeader;
         5: .line 629
            aload 0 /* this */
            aload 2 /* hc */
            putfield sun.net.www.http.ChunkedInputStream.hc:Lsun/net/www/http/HttpClient;
         6: .line 635
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.state:I
         7: .line 636
            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 649
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureOpen:()V
         1: .line 650
            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 651
            aload 0 /* this */
            iconst_1
            invokevirtual sun.net.www.http.ChunkedInputStream.readAhead:(Z)I
            ifgt 4
         3: .line 652
            iconst_m1
            ireturn
         4: .line 655
      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 673
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureOpen:()V
         1: .line 674
            iload 2 /* off */
            iflt 3
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            if_icmpgt 3
            iload 3 /* len */
            iflt 3
         2: .line 675
            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 676
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 677
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 6
         5: .line 678
            iconst_0
            ireturn
         6: .line 681
      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 682
            iload 4 /* avail */
            ifgt 13
         8: .line 688
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.state:I
            iconst_2
            if_icmpne 10
         9: .line 689
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual sun.net.www.http.ChunkedInputStream.fastRead:([BII)I
            ireturn
        10: .line 696
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual sun.net.www.http.ChunkedInputStream.readAhead:(Z)I
            istore 4 /* avail */
        11: .line 697
            iload 4 /* avail */
            ifge 13
        12: .line 698
            iconst_m1
            ireturn
        13: .line 701
      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 702
            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 703
            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 705
            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 718
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.ensureOpen:()V
         1: .line 720
            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 721
            iload 1 /* avail */
            ifle 4
         3: .line 722
            iload 1 /* avail */
            ireturn
         4: .line 725
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.net.www.http.ChunkedInputStream.readAhead:(Z)I
            istore 1 /* avail */
         5: .line 727
            iload 1 /* avail */
            ifge 7
         6: .line 728
            iconst_0
            ireturn
         7: .line 730
      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 746
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.closed:Z
            ifeq 2
         1: .line 747
            return
         2: .line 749
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.net.www.http.ChunkedInputStream.closeUnderlying:()V
         3: .line 750
            aload 0 /* this */
            iconst_1
            putfield sun.net.www.http.ChunkedInputStream.closed:Z
         4: .line 751
            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 763
            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 764
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 768
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.net.www.http.ChunkedInputStream.readAhead:(Z)I
            pop
         3: .line 769
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Exception
         4: pop
         5: .line 770
            iconst_0
            ireturn
         6: .line 773
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.net.www.http.ChunkedInputStream.error:Z
            ifeq 8
         7: .line 774
            iconst_0
            ireturn
         8: .line 777
      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"