public abstract class org.apache.http.impl.io.AbstractSessionInputBuffer implements org.apache.http.io.SessionInputBuffer, org.apache.http.io.BufferInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.http.impl.io.AbstractSessionInputBuffer
  super_class: java.lang.Object
{
  private java.io.InputStream inStream;
    descriptor: Ljava/io/InputStream;
    flags: (0x0002) ACC_PRIVATE

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

  private org.apache.http.util.ByteArrayBuffer lineBuffer;
    descriptor: Lorg/apache/http/util/ByteArrayBuffer;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.charset.Charset charset;
    descriptor: Ljava/nio/charset/Charset;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private org.apache.http.impl.io.HttpTransportMetricsImpl metrics;
    descriptor: Lorg/apache/http/impl/io/HttpTransportMetricsImpl;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.charset.CodingErrorAction onMalformedCharAction;
    descriptor: Ljava/nio/charset/CodingErrorAction;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.charset.CodingErrorAction onUnmappableCharAction;
    descriptor: Ljava/nio/charset/CodingErrorAction;
    flags: (0x0002) ACC_PRIVATE

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

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

  private java.nio.charset.CharsetDecoder decoder;
    descriptor: Ljava/nio/charset/CharsetDecoder;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.CharBuffer cbuf;
    descriptor: Ljava/nio/CharBuffer;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 83
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 84
            return
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;

  protected void init(java.io.InputStream, int, org.apache.http.params.HttpParams);
    descriptor: (Ljava/io/InputStream;ILorg/apache/http/params/HttpParams;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
        start local 1 // java.io.InputStream inputStream
        start local 2 // int bufferSize
        start local 3 // org.apache.http.params.HttpParams params
         0: .line 94
            aload 1 /* inputStream */
            ldc "Input stream"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 95
            iload 2 /* bufferSize */
            ldc "Buffer size"
            invokestatic org.apache.http.util.Args.notNegative:(ILjava/lang/String;)I
            pop
         2: .line 96
            aload 3 /* params */
            ldc "HTTP parameters"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 97
            aload 0 /* this */
            aload 1 /* inputStream */
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.inStream:Ljava/io/InputStream;
         4: .line 98
            aload 0 /* this */
            iload 2 /* bufferSize */
            newarray 8
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
         5: .line 99
            aload 0 /* this */
            iconst_0
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
         6: .line 100
            aload 0 /* this */
            iconst_0
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
         7: .line 101
            aload 0 /* this */
            new org.apache.http.util.ByteArrayBuffer
            dup
            iload 2 /* bufferSize */
            invokespecial org.apache.http.util.ByteArrayBuffer.<init>:(I)V
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
         8: .line 102
            aload 3 /* params */
            ldc "http.protocol.element-charset"
            invokeinterface org.apache.http.params.HttpParams.getParameter:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 4 /* charset */
        start local 4 // java.lang.String charset
         9: .line 103
            aload 0 /* this */
            aload 4 /* charset */
            ifnull 10
            aload 4 /* charset */
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            goto 11
      StackMap locals: org.apache.http.impl.io.AbstractSessionInputBuffer java.io.InputStream int org.apache.http.params.HttpParams java.lang.String
      StackMap stack: org.apache.http.impl.io.AbstractSessionInputBuffer
        10: getstatic org.apache.http.Consts.ASCII:Ljava/nio/charset/Charset;
      StackMap locals: org.apache.http.impl.io.AbstractSessionInputBuffer java.io.InputStream int org.apache.http.params.HttpParams java.lang.String
      StackMap stack: org.apache.http.impl.io.AbstractSessionInputBuffer java.nio.charset.Charset
        11: putfield org.apache.http.impl.io.AbstractSessionInputBuffer.charset:Ljava/nio/charset/Charset;
        12: .line 104
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.charset:Ljava/nio/charset/Charset;
            getstatic org.apache.http.Consts.ASCII:Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.equals:(Ljava/lang/Object;)Z
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.ascii:Z
        13: .line 105
            aload 0 /* this */
            aconst_null
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.decoder:Ljava/nio/charset/CharsetDecoder;
        14: .line 106
            aload 0 /* this */
            aload 3 /* params */
            ldc "http.connection.max-line-length"
            iconst_m1
            invokeinterface org.apache.http.params.HttpParams.getIntParameter:(Ljava/lang/String;I)I
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.maxLineLen:I
        15: .line 107
            aload 0 /* this */
            aload 3 /* params */
            ldc "http.connection.min-chunk-limit"
            sipush 512
            invokeinterface org.apache.http.params.HttpParams.getIntParameter:(Ljava/lang/String;I)I
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.minChunkLimit:I
        16: .line 108
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.createTransportMetrics:()Lorg/apache/http/impl/io/HttpTransportMetricsImpl;
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.metrics:Lorg/apache/http/impl/io/HttpTransportMetricsImpl;
        17: .line 109
            aload 3 /* params */
        18: .line 110
            ldc "http.malformed.input.action"
        19: .line 109
            invokeinterface org.apache.http.params.HttpParams.getParameter:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.nio.charset.CodingErrorAction
            astore 5 /* a1 */
        start local 5 // java.nio.charset.CodingErrorAction a1
        20: .line 111
            aload 0 /* this */
            aload 5 /* a1 */
            ifnull 21
            aload 5 /* a1 */
            goto 22
      StackMap locals: org.apache.http.impl.io.AbstractSessionInputBuffer java.io.InputStream int org.apache.http.params.HttpParams java.lang.String java.nio.charset.CodingErrorAction
      StackMap stack: org.apache.http.impl.io.AbstractSessionInputBuffer
        21: getstatic java.nio.charset.CodingErrorAction.REPORT:Ljava/nio/charset/CodingErrorAction;
      StackMap locals: org.apache.http.impl.io.AbstractSessionInputBuffer java.io.InputStream int org.apache.http.params.HttpParams java.lang.String java.nio.charset.CodingErrorAction
      StackMap stack: org.apache.http.impl.io.AbstractSessionInputBuffer java.nio.charset.CodingErrorAction
        22: putfield org.apache.http.impl.io.AbstractSessionInputBuffer.onMalformedCharAction:Ljava/nio/charset/CodingErrorAction;
        23: .line 112
            aload 3 /* params */
        24: .line 113
            ldc "http.unmappable.input.action"
        25: .line 112
            invokeinterface org.apache.http.params.HttpParams.getParameter:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.nio.charset.CodingErrorAction
            astore 6 /* a2 */
        start local 6 // java.nio.charset.CodingErrorAction a2
        26: .line 114
            aload 0 /* this */
            aload 6 /* a2 */
            ifnull 27
            aload 6 /* a2 */
            goto 28
      StackMap locals: org.apache.http.impl.io.AbstractSessionInputBuffer java.io.InputStream int org.apache.http.params.HttpParams java.lang.String java.nio.charset.CodingErrorAction java.nio.charset.CodingErrorAction
      StackMap stack: org.apache.http.impl.io.AbstractSessionInputBuffer
        27: getstatic java.nio.charset.CodingErrorAction.REPORT:Ljava/nio/charset/CodingErrorAction;
      StackMap locals: org.apache.http.impl.io.AbstractSessionInputBuffer java.io.InputStream int org.apache.http.params.HttpParams java.lang.String java.nio.charset.CodingErrorAction java.nio.charset.CodingErrorAction
      StackMap stack: org.apache.http.impl.io.AbstractSessionInputBuffer java.nio.charset.CodingErrorAction
        28: putfield org.apache.http.impl.io.AbstractSessionInputBuffer.onUnmappableCharAction:Ljava/nio/charset/CodingErrorAction;
        29: .line 115
            return
        end local 6 // java.nio.charset.CodingErrorAction a2
        end local 5 // java.nio.charset.CodingErrorAction a1
        end local 4 // java.lang.String charset
        end local 3 // org.apache.http.params.HttpParams params
        end local 2 // int bufferSize
        end local 1 // java.io.InputStream inputStream
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   30     0         this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            0   30     1  inputStream  Ljava/io/InputStream;
            0   30     2   bufferSize  I
            0   30     3       params  Lorg/apache/http/params/HttpParams;
            9   30     4      charset  Ljava/lang/String;
           20   30     5           a1  Ljava/nio/charset/CodingErrorAction;
           26   30     6           a2  Ljava/nio/charset/CodingErrorAction;
    MethodParameters:
             Name  Flags
      inputStream  final
      bufferSize   final
      params       final

  protected org.apache.http.impl.io.HttpTransportMetricsImpl createTransportMetrics();
    descriptor: ()Lorg/apache/http/impl/io/HttpTransportMetricsImpl;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 121
            new org.apache.http.impl.io.HttpTransportMetricsImpl
            dup
            invokespecial org.apache.http.impl.io.HttpTransportMetricsImpl.<init>:()V
            areturn
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;

  public int capacity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 129
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            arraylength
            ireturn
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 137
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            isub
            ireturn
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 145
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.capacity:()I
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.length:()I
            isub
            ireturn
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;

  protected int fillBuffer();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 150
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            ifle 6
         1: .line 151
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            isub
            istore 1 /* len */
        start local 1 // int len
         2: .line 152
            iload 1 /* len */
            ifle 4
         3: .line 153
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            iconst_0
            iload 1 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 155
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
         5: .line 156
            aload 0 /* this */
            iload 1 /* len */
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
        end local 1 // int len
         6: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            istore 2 /* off */
        start local 2 // int off
         7: .line 160
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            arraylength
            iload 2 /* off */
            isub
            istore 3 /* len */
        start local 3 // int len
         8: .line 161
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.inStream:Ljava/io/InputStream;
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 1 /* readLen */
        start local 1 // int readLen
         9: .line 162
            iload 1 /* readLen */
            iconst_m1
            if_icmpne 11
        10: .line 163
            iconst_m1
            ireturn
        11: .line 165
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* off */
            iload 1 /* readLen */
            iadd
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
        12: .line 166
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.metrics:Lorg/apache/http/impl/io/HttpTransportMetricsImpl;
            iload 1 /* readLen */
            i2l
            invokevirtual org.apache.http.impl.io.HttpTransportMetricsImpl.incrementBytesTransferred:(J)V
        13: .line 167
            iload 1 /* readLen */
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // int readLen
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            2    6     1      len  I
            9   14     1  readLen  I
            7   14     2      off  I
            8   14     3      len  I
    Exceptions:
      throws java.io.IOException

  protected boolean hasBufferedData();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 171
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 177
            goto 4
         1: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer:()I
            istore 1 /* noRead */
        start local 1 // int noRead
         2: .line 179
            iload 1 /* noRead */
            iconst_m1
            if_icmpne 4
         3: .line 180
            iconst_m1
            ireturn
        end local 1 // int noRead
         4: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.hasBufferedData:()Z
            ifeq 1
         5: .line 183
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            aload 0 /* this */
            dup
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            baload
            sipush 255
            iand
            ireturn
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            2    4     1  noRead  I
    Exceptions:
      throws java.io.IOException

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 188
            aload 1 /* b */
            ifnonnull 2
         1: .line 189
            iconst_0
            ireturn
         2: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.hasBufferedData:()Z
            ifeq 7
         3: .line 192
            iload 3 /* len */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* chunk */
        start local 4 // int chunk
         4: .line 193
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* chunk */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 194
            aload 0 /* this */
            dup
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            iload 4 /* chunk */
            iadd
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
         6: .line 195
            iload 4 /* chunk */
            ireturn
        end local 4 // int chunk
         7: .line 199
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.minChunkLimit:I
            if_icmple 15
         8: .line 200
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.inStream:Ljava/io/InputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* read */
        start local 4 // int read
         9: .line 201
            iload 4 /* read */
            ifle 11
        10: .line 202
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.metrics:Lorg/apache/http/impl/io/HttpTransportMetricsImpl;
            iload 4 /* read */
            i2l
            invokevirtual org.apache.http.impl.io.HttpTransportMetricsImpl.incrementBytesTransferred:(J)V
        11: .line 204
      StackMap locals: int
      StackMap stack:
            iload 4 /* read */
            ireturn
        end local 4 // int read
        12: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer:()I
            istore 4 /* noRead */
        start local 4 // int noRead
        13: .line 209
            iload 4 /* noRead */
            iconst_m1
            if_icmpne 15
        14: .line 210
            iconst_m1
            ireturn
        end local 4 // int noRead
        15: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.hasBufferedData:()Z
            ifeq 12
        16: .line 213
            iload 3 /* len */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* chunk */
        start local 4 // int chunk
        17: .line 214
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* chunk */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 215
            aload 0 /* this */
            dup
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            iload 4 /* chunk */
            iadd
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
        19: .line 216
            iload 4 /* chunk */
            ireturn
        end local 4 // int chunk
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   20     0    this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            0   20     1       b  [B
            0   20     2     off  I
            0   20     3     len  I
            4    7     4   chunk  I
            9   12     4    read  I
           13   15     4  noRead  I
           17   20     4   chunk  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final
      off   final
      len   final

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
        start local 1 // byte[] b
         0: .line 221
            aload 1 /* b */
            ifnonnull 2
         1: .line 222
            iconst_0
            ireturn
         2: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.read:([BII)I
            ireturn
        end local 1 // byte[] b
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            0    3     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final

  private int locateLF();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 228
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            istore 1 /* i */
        start local 1 // int i
         1: goto 5
         2: .line 229
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            iload 1 /* i */
            baload
            bipush 10
            if_icmpne 4
         3: .line 230
            iload 1 /* i */
            ireturn
         4: .line 228
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            if_icmplt 2
        end local 1 // int i
         6: .line 233
            iconst_m1
            ireturn
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            1    6     1     i  I

  public int readLine(org.apache.http.util.CharArrayBuffer);
    descriptor: (Lorg/apache/http/util/CharArrayBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
        start local 1 // org.apache.http.util.CharArrayBuffer charbuffer
         0: .line 253
            aload 1 /* charbuffer */
            ldc "Char array buffer"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 254
            iconst_0
            istore 2 /* noRead */
        start local 2 // int noRead
         2: .line 255
            iconst_1
            istore 3 /* retry */
        start local 3 // boolean retry
         3: .line 256
            goto 22
         4: .line 258
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.locateLF:()I
            istore 4 /* i */
        start local 4 // int i
         5: .line 259
            iload 4 /* i */
            iconst_m1
            if_icmpeq 13
         6: .line 261
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            invokevirtual org.apache.http.util.ByteArrayBuffer.isEmpty:()Z
            ifeq 8
         7: .line 263
            aload 0 /* this */
            aload 1 /* charbuffer */
            iload 4 /* i */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.lineFromReadBuffer:(Lorg/apache/http/util/CharArrayBuffer;I)I
            ireturn
         8: .line 265
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* retry */
         9: .line 266
            iload 4 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            isub
            istore 5 /* len */
        start local 5 // int len
        10: .line 267
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            iload 5 /* len */
            invokevirtual org.apache.http.util.ByteArrayBuffer.append:([BII)V
        11: .line 268
            aload 0 /* this */
            iload 4 /* i */
            iconst_1
            iadd
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
        end local 5 // int len
        12: .line 269
            goto 20
        13: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.hasBufferedData:()Z
            ifeq 17
        14: .line 272
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            isub
            istore 5 /* len */
        start local 5 // int len
        15: .line 273
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            iload 5 /* len */
            invokevirtual org.apache.http.util.ByteArrayBuffer.append:([BII)V
        16: .line 274
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferLen:I
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
        end local 5 // int len
        17: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer:()I
            istore 2 /* noRead */
        18: .line 277
            iload 2 /* noRead */
            iconst_m1
            if_icmpne 20
        19: .line 278
            iconst_0
            istore 3 /* retry */
        20: .line 281
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.maxLineLen:I
            ifle 22
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            invokevirtual org.apache.http.util.ByteArrayBuffer.length:()I
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.maxLineLen:I
            if_icmplt 22
        21: .line 282
            new java.io.IOException
            dup
            ldc "Maximum line length limit exceeded"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // int i
        22: .line 256
      StackMap locals:
      StackMap stack:
            iload 3 /* retry */
            ifne 4
        23: .line 285
            iload 2 /* noRead */
            iconst_m1
            if_icmpne 25
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            invokevirtual org.apache.http.util.ByteArrayBuffer.isEmpty:()Z
            ifeq 25
        24: .line 287
            iconst_m1
            ireturn
        25: .line 289
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* charbuffer */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.lineFromLineBuffer:(Lorg/apache/http/util/CharArrayBuffer;)I
            ireturn
        end local 3 // boolean retry
        end local 2 // int noRead
        end local 1 // org.apache.http.util.CharArrayBuffer charbuffer
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   26     0        this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            0   26     1  charbuffer  Lorg/apache/http/util/CharArrayBuffer;
            2   26     2      noRead  I
            3   26     3       retry  Z
            5   22     4           i  I
           10   12     5         len  I
           15   17     5         len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      charbuffer  final

  private int lineFromLineBuffer(org.apache.http.util.CharArrayBuffer);
    descriptor: (Lorg/apache/http/util/CharArrayBuffer;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
        start local 1 // org.apache.http.util.CharArrayBuffer charbuffer
         0: .line 308
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            invokevirtual org.apache.http.util.ByteArrayBuffer.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 309
            iload 2 /* len */
            ifle 7
         2: .line 310
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            iload 2 /* len */
            iconst_1
            isub
            invokevirtual org.apache.http.util.ByteArrayBuffer.byteAt:(I)I
            bipush 10
            if_icmpne 4
         3: .line 311
            iinc 2 /* len */ -1
         4: .line 314
      StackMap locals: int
      StackMap stack:
            iload 2 /* len */
            ifle 7
         5: .line 315
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            iload 2 /* len */
            iconst_1
            isub
            invokevirtual org.apache.http.util.ByteArrayBuffer.byteAt:(I)I
            bipush 13
            if_icmpne 7
         6: .line 316
            iinc 2 /* len */ -1
         7: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.ascii:Z
            ifeq 10
         8: .line 321
            aload 1 /* charbuffer */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            iconst_0
            iload 2 /* len */
            invokevirtual org.apache.http.util.CharArrayBuffer.append:(Lorg/apache/http/util/ByteArrayBuffer;II)V
         9: .line 322
            goto 12
        10: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            invokevirtual org.apache.http.util.ByteArrayBuffer.buffer:()[B
            iconst_0
            iload 2 /* len */
            invokestatic java.nio.ByteBuffer.wrap:([BII)Ljava/nio/ByteBuffer;
            astore 3 /* bbuf */
        start local 3 // java.nio.ByteBuffer bbuf
        11: .line 324
            aload 0 /* this */
            aload 1 /* charbuffer */
            aload 3 /* bbuf */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.appendDecoded:(Lorg/apache/http/util/CharArrayBuffer;Ljava/nio/ByteBuffer;)I
            istore 2 /* len */
        end local 3 // java.nio.ByteBuffer bbuf
        12: .line 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.lineBuffer:Lorg/apache/http/util/ByteArrayBuffer;
            invokevirtual org.apache.http.util.ByteArrayBuffer.clear:()V
        13: .line 327
            iload 2 /* len */
            ireturn
        end local 2 // int len
        end local 1 // org.apache.http.util.CharArrayBuffer charbuffer
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            0   14     1  charbuffer  Lorg/apache/http/util/CharArrayBuffer;
            1   14     2         len  I
           11   12     3        bbuf  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      charbuffer  final

  private int lineFromReadBuffer(org.apache.http.util.CharArrayBuffer, int);
    descriptor: (Lorg/apache/http/util/CharArrayBuffer;I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
        start local 1 // org.apache.http.util.CharArrayBuffer charbuffer
        start local 2 // int position
         0: .line 332
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
            istore 3 /* off */
        start local 3 // int off
         1: .line 333
            iload 2 /* position */
            istore 4 /* i */
        start local 4 // int i
         2: .line 334
            aload 0 /* this */
            iload 4 /* i */
            iconst_1
            iadd
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.bufferPos:I
         3: .line 335
            iload 4 /* i */
            iload 3 /* off */
            if_icmple 5
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            iload 4 /* i */
            iconst_1
            isub
            baload
            bipush 13
            if_icmpne 5
         4: .line 337
            iinc 4 /* i */ -1
         5: .line 339
      StackMap locals: int int
      StackMap stack:
            iload 4 /* i */
            iload 3 /* off */
            isub
            istore 5 /* len */
        start local 5 // int len
         6: .line 340
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.ascii:Z
            ifeq 9
         7: .line 341
            aload 1 /* charbuffer */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            iload 3 /* off */
            iload 5 /* len */
            invokevirtual org.apache.http.util.CharArrayBuffer.append:([BII)V
         8: .line 342
            goto 11
         9: .line 343
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.buffer:[B
            iload 3 /* off */
            iload 5 /* len */
            invokestatic java.nio.ByteBuffer.wrap:([BII)Ljava/nio/ByteBuffer;
            astore 6 /* bbuf */
        start local 6 // java.nio.ByteBuffer bbuf
        10: .line 344
            aload 0 /* this */
            aload 1 /* charbuffer */
            aload 6 /* bbuf */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.appendDecoded:(Lorg/apache/http/util/CharArrayBuffer;Ljava/nio/ByteBuffer;)I
            istore 5 /* len */
        end local 6 // java.nio.ByteBuffer bbuf
        11: .line 346
      StackMap locals:
      StackMap stack:
            iload 5 /* len */
            ireturn
        end local 5 // int len
        end local 4 // int i
        end local 3 // int off
        end local 2 // int position
        end local 1 // org.apache.http.util.CharArrayBuffer charbuffer
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            0   12     1  charbuffer  Lorg/apache/http/util/CharArrayBuffer;
            0   12     2    position  I
            1   12     3         off  I
            2   12     4           i  I
            6   12     5         len  I
           10   11     6        bbuf  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      charbuffer  final
      position    final

  private int appendDecoded(org.apache.http.util.CharArrayBuffer, java.nio.ByteBuffer);
    descriptor: (Lorg/apache/http/util/CharArrayBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
        start local 1 // org.apache.http.util.CharArrayBuffer charbuffer
        start local 2 // java.nio.ByteBuffer bbuf
         0: .line 351
            aload 2 /* bbuf */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 2
         1: .line 352
            iconst_0
            ireturn
         2: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.decoder:Ljava/nio/charset/CharsetDecoder;
            ifnonnull 6
         3: .line 355
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.charset:Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.newDecoder:()Ljava/nio/charset/CharsetDecoder;
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.decoder:Ljava/nio/charset/CharsetDecoder;
         4: .line 356
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.decoder:Ljava/nio/charset/CharsetDecoder;
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.onMalformedCharAction:Ljava/nio/charset/CodingErrorAction;
            invokevirtual java.nio.charset.CharsetDecoder.onMalformedInput:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
            pop
         5: .line 357
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.decoder:Ljava/nio/charset/CharsetDecoder;
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.onUnmappableCharAction:Ljava/nio/charset/CodingErrorAction;
            invokevirtual java.nio.charset.CharsetDecoder.onUnmappableCharacter:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
            pop
         6: .line 359
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            ifnonnull 8
         7: .line 360
            aload 0 /* this */
            sipush 1024
            invokestatic java.nio.CharBuffer.allocate:(I)Ljava/nio/CharBuffer;
            putfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
         8: .line 362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.decoder:Ljava/nio/charset/CharsetDecoder;
            invokevirtual java.nio.charset.CharsetDecoder.reset:()Ljava/nio/charset/CharsetDecoder;
            pop
         9: .line 363
            iconst_0
            istore 3 /* len */
        start local 3 // int len
        10: .line 364
            goto 13
        11: .line 365
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.decoder:Ljava/nio/charset/CharsetDecoder;
            aload 2 /* bbuf */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            iconst_1
            invokevirtual java.nio.charset.CharsetDecoder.decode:(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;Z)Ljava/nio/charset/CoderResult;
            astore 4 /* result */
        start local 4 // java.nio.charset.CoderResult result
        12: .line 366
            iload 3 /* len */
            aload 0 /* this */
            aload 4 /* result */
            aload 1 /* charbuffer */
            aload 2 /* bbuf */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.handleDecodingResult:(Ljava/nio/charset/CoderResult;Lorg/apache/http/util/CharArrayBuffer;Ljava/nio/ByteBuffer;)I
            iadd
            istore 3 /* len */
        end local 4 // java.nio.charset.CoderResult result
        13: .line 364
      StackMap locals:
      StackMap stack:
            aload 2 /* bbuf */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 11
        14: .line 368
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.decoder:Ljava/nio/charset/CharsetDecoder;
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            invokevirtual java.nio.charset.CharsetDecoder.flush:(Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;
            astore 4 /* result */
        start local 4 // java.nio.charset.CoderResult result
        15: .line 369
            iload 3 /* len */
            aload 0 /* this */
            aload 4 /* result */
            aload 1 /* charbuffer */
            aload 2 /* bbuf */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.handleDecodingResult:(Ljava/nio/charset/CoderResult;Lorg/apache/http/util/CharArrayBuffer;Ljava/nio/ByteBuffer;)I
            iadd
            istore 3 /* len */
        16: .line 370
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.clear:()Ljava/nio/Buffer;
            pop
        17: .line 371
            iload 3 /* len */
            ireturn
        end local 4 // java.nio.charset.CoderResult result
        end local 3 // int len
        end local 2 // java.nio.ByteBuffer bbuf
        end local 1 // org.apache.http.util.CharArrayBuffer charbuffer
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0        this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            0   18     1  charbuffer  Lorg/apache/http/util/CharArrayBuffer;
            0   18     2        bbuf  Ljava/nio/ByteBuffer;
           10   18     3         len  I
           12   13     4      result  Ljava/nio/charset/CoderResult;
           15   18     4      result  Ljava/nio/charset/CoderResult;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      charbuffer  final
      bbuf        final

  private int handleDecodingResult(java.nio.charset.CoderResult, org.apache.http.util.CharArrayBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/charset/CoderResult;Lorg/apache/http/util/CharArrayBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=4
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
        start local 1 // java.nio.charset.CoderResult result
        start local 2 // org.apache.http.util.CharArrayBuffer charbuffer
        start local 3 // java.nio.ByteBuffer bbuf
         0: .line 378
            aload 1 /* result */
            invokevirtual java.nio.charset.CoderResult.isError:()Z
            ifeq 2
         1: .line 379
            aload 1 /* result */
            invokevirtual java.nio.charset.CoderResult.throwException:()V
         2: .line 381
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.flip:()Ljava/nio/Buffer;
            pop
         3: .line 382
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.remaining:()I
            istore 4 /* len */
        start local 4 // int len
         4: .line 383
            goto 6
         5: .line 384
      StackMap locals: int
      StackMap stack:
            aload 2 /* charbuffer */
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.get:()C
            invokevirtual org.apache.http.util.CharArrayBuffer.append:(C)V
         6: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.hasRemaining:()Z
            ifne 5
         7: .line 386
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.cbuf:Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.compact:()Ljava/nio/CharBuffer;
            pop
         8: .line 387
            iload 4 /* len */
            ireturn
        end local 4 // int len
        end local 3 // java.nio.ByteBuffer bbuf
        end local 2 // org.apache.http.util.CharArrayBuffer charbuffer
        end local 1 // java.nio.charset.CoderResult result
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            0    9     1      result  Ljava/nio/charset/CoderResult;
            0    9     2  charbuffer  Lorg/apache/http/util/CharArrayBuffer;
            0    9     3        bbuf  Ljava/nio/ByteBuffer;
            4    9     4         len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      result      final
      charbuffer  final
      bbuf        final

  public java.lang.String readLine();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 392
            new org.apache.http.util.CharArrayBuffer
            dup
            bipush 64
            invokespecial org.apache.http.util.CharArrayBuffer.<init>:(I)V
            astore 1 /* charbuffer */
        start local 1 // org.apache.http.util.CharArrayBuffer charbuffer
         1: .line 393
            aload 0 /* this */
            aload 1 /* charbuffer */
            invokevirtual org.apache.http.impl.io.AbstractSessionInputBuffer.readLine:(Lorg/apache/http/util/CharArrayBuffer;)I
            istore 2 /* readLen */
        start local 2 // int readLen
         2: .line 394
            iload 2 /* readLen */
            iconst_m1
            if_icmpeq 4
         3: .line 395
            aload 1 /* charbuffer */
            invokevirtual org.apache.http.util.CharArrayBuffer.toString:()Ljava/lang/String;
            areturn
         4: .line 397
      StackMap locals: org.apache.http.util.CharArrayBuffer int
      StackMap stack:
            aconst_null
            areturn
        end local 2 // int readLen
        end local 1 // org.apache.http.util.CharArrayBuffer charbuffer
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
            1    5     1  charbuffer  Lorg/apache/http/util/CharArrayBuffer;
            2    5     2     readLen  I
    Exceptions:
      throws java.io.IOException

  public org.apache.http.io.HttpTransportMetrics getMetrics();
    descriptor: ()Lorg/apache/http/io/HttpTransportMetrics;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
         0: .line 402
            aload 0 /* this */
            getfield org.apache.http.impl.io.AbstractSessionInputBuffer.metrics:Lorg/apache/http/impl/io/HttpTransportMetricsImpl;
            areturn
        end local 0 // org.apache.http.impl.io.AbstractSessionInputBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/impl/io/AbstractSessionInputBuffer;
}
SourceFile: "AbstractSessionInputBuffer.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()