public class org.eclipse.jetty.http.GZIPContentDecoder implements org.eclipse.jetty.util.component.Destroyable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.http.GZIPContentDecoder
  super_class: java.lang.Object
{
  private final java.util.List<java.nio.ByteBuffer> _inflateds;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/nio/ByteBuffer;>;

  private final java.util.zip.Inflater _inflater;
    descriptor: Ljava/util/zip/Inflater;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.jetty.io.ByteBufferPool _pool;
    descriptor: Lorg/eclipse/jetty/io/ByteBufferPool;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int _bufferSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.eclipse.jetty.http.GZIPContentDecoder$State _state;
    descriptor: Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
    flags: (0x0002) ACC_PRIVATE

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

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

  private byte _flags;
    descriptor: B
    flags: (0x0002) ACC_PRIVATE

  private java.nio.ByteBuffer _inflated;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0002) ACC_PRIVATE

  private static volatile int[] $SWITCH_TABLE$org$eclipse$jetty$http$GZIPContentDecoder$State;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
         0: .line 52
            aload 0 /* this */
            aconst_null
            sipush 2048
            invokespecial org.eclipse.jetty.http.GZIPContentDecoder.<init>:(Lorg/eclipse/jetty/io/ByteBufferPool;I)V
         1: .line 53
            return
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/http/GZIPContentDecoder;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
        start local 1 // int bufferSize
         0: .line 57
            aload 0 /* this */
            aconst_null
            iload 1 /* bufferSize */
            invokespecial org.eclipse.jetty.http.GZIPContentDecoder.<init>:(Lorg/eclipse/jetty/io/ByteBufferPool;I)V
         1: .line 58
            return
        end local 1 // int bufferSize
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/jetty/http/GZIPContentDecoder;
            0    2     1  bufferSize  I
    MethodParameters:
            Name  Flags
      bufferSize  

  public void <init>(org.eclipse.jetty.io.ByteBufferPool, int);
    descriptor: (Lorg/eclipse/jetty/io/ByteBufferPool;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
        start local 1 // org.eclipse.jetty.io.ByteBufferPool pool
        start local 2 // int bufferSize
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.jetty.http.GZIPContentDecoder._inflateds:Ljava/util/List;
         2: .line 41
            aload 0 /* this */
            new java.util.zip.Inflater
            dup
            iconst_1
            invokespecial java.util.zip.Inflater.<init>:(Z)V
            putfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
         3: .line 62
            aload 0 /* this */
            iload 2 /* bufferSize */
            putfield org.eclipse.jetty.http.GZIPContentDecoder._bufferSize:I
         4: .line 63
            aload 0 /* this */
            aload 1 /* pool */
            putfield org.eclipse.jetty.http.GZIPContentDecoder._pool:Lorg/eclipse/jetty/io/ByteBufferPool;
         5: .line 64
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.reset:()V
         6: .line 65
            return
        end local 2 // int bufferSize
        end local 1 // org.eclipse.jetty.io.ByteBufferPool pool
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/jetty/http/GZIPContentDecoder;
            0    7     1        pool  Lorg/eclipse/jetty/io/ByteBufferPool;
            0    7     2  bufferSize  I
    MethodParameters:
            Name  Flags
      pool        
      bufferSize  

  public java.nio.ByteBuffer decode(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
        start local 1 // java.nio.ByteBuffer compressed
         0: .line 87
            aload 0 /* this */
            aload 1 /* compressed */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.decodeChunks:(Ljava/nio/ByteBuffer;)V
         1: .line 89
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflateds:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 7
         2: .line 91
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
            invokestatic org.eclipse.jetty.util.BufferUtil.isEmpty:(Ljava/nio/ByteBuffer;)Z
            ifne 3
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.CRC:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            if_acmpeq 3
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.ISIZE:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            if_acmpne 4
         3: .line 92
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.jetty.util.BufferUtil.EMPTY_BUFFER:Ljava/nio/ByteBuffer;
            areturn
         4: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
            astore 2 /* result */
        start local 2 // java.nio.ByteBuffer result
         5: .line 94
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
         6: .line 95
            aload 2 /* result */
            areturn
        end local 2 // java.nio.ByteBuffer result
         7: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflateds:Ljava/util/List;
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 100
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
         9: .line 101
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflateds:Ljava/util/List;
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
            invokedynamic applyAsInt()Ljava/util/function/ToIntFunction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)I
                  java/nio/Buffer.remaining()I (5)
                  (Ljava/nio/ByteBuffer;)I
            invokeinterface java.util.stream.Stream.mapToInt:(Ljava/util/function/ToIntFunction;)Ljava/util/stream/IntStream;
            invokeinterface java.util.stream.IntStream.sum:()I
            istore 2 /* length */
        start local 2 // int length
        10: .line 102
            aload 0 /* this */
            iload 2 /* length */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.acquire:(I)Ljava/nio/ByteBuffer;
            astore 3 /* result */
        start local 3 // java.nio.ByteBuffer result
        11: .line 103
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflateds:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 15
      StackMap locals: org.eclipse.jetty.http.GZIPContentDecoder java.nio.ByteBuffer int java.nio.ByteBuffer top java.util.Iterator
      StackMap stack:
        12: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.ByteBuffer
            astore 4 /* buffer */
        start local 4 // java.nio.ByteBuffer buffer
        13: .line 105
            aload 3 /* result */
            aload 4 /* buffer */
            invokestatic org.eclipse.jetty.util.BufferUtil.append:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            pop
        14: .line 106
            aload 0 /* this */
            aload 4 /* buffer */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.release:(Ljava/nio/ByteBuffer;)V
        end local 4 // java.nio.ByteBuffer buffer
        15: .line 103
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        16: .line 108
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflateds:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
        17: .line 109
            aload 3 /* result */
            areturn
        end local 3 // java.nio.ByteBuffer result
        end local 2 // int length
        end local 1 // java.nio.ByteBuffer compressed
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0        this  Lorg/eclipse/jetty/http/GZIPContentDecoder;
            0   18     1  compressed  Ljava/nio/ByteBuffer;
            5    7     2      result  Ljava/nio/ByteBuffer;
           10   18     2      length  I
           11   18     3      result  Ljava/nio/ByteBuffer;
           13   15     4      buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
            Name  Flags
      compressed  

  protected boolean decodedChunk(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
        start local 1 // java.nio.ByteBuffer chunk
         0: .line 130
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
            ifnonnull 3
         1: .line 132
            aload 0 /* this */
            aload 1 /* chunk */
            putfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
         2: .line 133
            goto 9
         3: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
            invokestatic org.eclipse.jetty.util.BufferUtil.space:(Ljava/nio/ByteBuffer;)I
            aload 1 /* chunk */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmplt 7
         4: .line 138
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
            aload 1 /* chunk */
            invokestatic org.eclipse.jetty.util.BufferUtil.append:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            pop
         5: .line 139
            aload 0 /* this */
            aload 1 /* chunk */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.release:(Ljava/nio/ByteBuffer;)V
         6: .line 140
            goto 9
         7: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflateds:Ljava/util/List;
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 144
            aload 0 /* this */
            aload 1 /* chunk */
            putfield org.eclipse.jetty.http.GZIPContentDecoder._inflated:Ljava/nio/ByteBuffer;
         9: .line 147
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.nio.ByteBuffer chunk
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/eclipse/jetty/http/GZIPContentDecoder;
            0   10     1  chunk  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      chunk  

  protected void decodeChunks(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
        start local 1 // java.nio.ByteBuffer compressed
         0: .line 159
            aconst_null
            astore 2 /* buffer */
        start local 2 // java.nio.ByteBuffer buffer
         1: .line 164
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            invokestatic org.eclipse.jetty.http.GZIPContentDecoder.$SWITCH_TABLE$org$eclipse$jetty$http$GZIPContentDecoder$State:()[I
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            iaload
            lookupswitch { // 3
                    1: 2
                    8: 4
                   14: 20
              default: 54
          }
         2: .line 168
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.ID:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
         3: .line 169
            goto 54
         4: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
            iconst_4
            iand
            iconst_4
            if_icmpne 9
         5: .line 176
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.EXTRA_LENGTH:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
         6: .line 177
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
         7: .line 178
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
         8: .line 179
            goto 54
         9: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
            bipush 8
            iand
            bipush 8
            if_icmpne 11
        10: .line 181
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.NAME:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            goto 54
        11: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
            bipush 16
            iand
            bipush 16
            if_icmpne 13
        12: .line 183
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.COMMENT:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            goto 54
        13: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
            iconst_2
            iand
            iconst_2
            if_icmpne 18
        14: .line 186
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.HCRC:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        15: .line 187
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
        16: .line 188
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
        17: .line 189
            goto 54
        18: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.DATA:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        19: .line 193
            goto 1
        20: .line 202
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            ifnonnull 22
        21: .line 203
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._bufferSize:I
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.acquire:(I)Ljava/nio/ByteBuffer;
            astore 2 /* buffer */
        22: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            aload 2 /* buffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            aload 2 /* buffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 2 /* buffer */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            invokevirtual java.util.zip.Inflater.inflate:([BII)I
            istore 3 /* length */
        start local 3 // int length
        23: .line 208
            aload 2 /* buffer */
            iload 3 /* length */
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        end local 3 // int length
        24: .line 209
            goto 27
        25: .line 210
      StackMap locals:
      StackMap stack: java.util.zip.DataFormatException
            astore 3 /* x */
        start local 3 // java.util.zip.DataFormatException x
        26: .line 212
            new java.util.zip.ZipException
            dup
            aload 3 /* x */
            invokevirtual java.util.zip.DataFormatException.getMessage:()Ljava/lang/String;
            invokespecial java.util.zip.ZipException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.util.zip.DataFormatException x
        27: .line 215
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifeq 34
        28: .line 217
            aload 2 /* buffer */
            astore 3 /* chunk */
        start local 3 // java.nio.ByteBuffer chunk
        29: .line 218
            aconst_null
            astore 2 /* buffer */
        30: .line 219
            aload 0 /* this */
            aload 3 /* chunk */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.decodedChunk:(Ljava/nio/ByteBuffer;)Z
            ifeq 20
        31: .line 402
            aload 2 /* buffer */
            ifnull 33
        32: .line 403
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.release:(Ljava/nio/ByteBuffer;)V
        33: .line 220
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            return
        end local 3 // java.nio.ByteBuffer chunk
        34: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            invokevirtual java.util.zip.Inflater.needsInput:()Z
            ifeq 47
        35: .line 224
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 39
        36: .line 402
            aload 2 /* buffer */
            ifnull 38
        37: .line 403
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.release:(Ljava/nio/ByteBuffer;)V
        38: .line 225
      StackMap locals:
      StackMap stack:
            return
        39: .line 226
      StackMap locals:
      StackMap stack:
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 43
        40: .line 228
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.array:()[B
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.position:()I
            iadd
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual java.util.zip.Inflater.setInput:([BII)V
        41: .line 229
            aload 1 /* compressed */
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        42: .line 230
            goto 20
        43: .line 234
      StackMap locals:
      StackMap stack:
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            newarray 8
            astore 3 /* input */
        start local 3 // byte[] input
        44: .line 235
            aload 1 /* compressed */
            aload 3 /* input */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        45: .line 236
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            aload 3 /* input */
            invokevirtual java.util.zip.Inflater.setInput:([B)V
        end local 3 // byte[] input
        46: .line 238
            goto 20
        47: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            invokevirtual java.util.zip.Inflater.finished:()Z
            ifeq 20
        48: .line 241
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            invokevirtual java.util.zip.Inflater.getRemaining:()I
            istore 3 /* remaining */
        start local 3 // int remaining
        49: .line 242
            aload 1 /* compressed */
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iload 3 /* remaining */
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        50: .line 243
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.CRC:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        51: .line 244
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
        52: .line 245
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
        end local 3 // int remaining
        53: .line 249
            goto 1
        54: .line 256
      StackMap locals:
      StackMap stack:
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 56
        55: .line 257
            goto 128
        56: .line 259
      StackMap locals:
      StackMap stack:
            aload 1 /* compressed */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 3 /* currByte */
        start local 3 // byte currByte
        57: .line 260
            invokestatic org.eclipse.jetty.http.GZIPContentDecoder.$SWITCH_TABLE$org$eclipse$jetty$http$GZIPContentDecoder$State:()[I
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            iaload
            tableswitch { // 2 - 16
                    2: 58
                    3: 65
                    4: 69
                    5: 74
                    6: 78
                    7: 80
                    8: 121
                    9: 82
                   10: 87
                   11: 92
                   12: 96
                   13: 100
                   14: 121
                   15: 105
                   16: 112
              default: 121
          }
        58: .line 264
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
            iload 3 /* currByte */
            sipush 255
            iand
            bipush 8
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            imul
            ishl
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
        59: .line 265
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_1
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
        60: .line 266
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_2
            if_icmpne 1
        61: .line 268
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
            ldc 35615
            if_icmpeq 63
        62: .line 269
            new java.util.zip.ZipException
            dup
            ldc "Invalid gzip bytes"
            invokespecial java.util.zip.ZipException.<init>:(Ljava/lang/String;)V
            athrow
        63: .line 270
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.CM:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        64: .line 272
            goto 1
        65: .line 276
      StackMap locals:
      StackMap stack:
            iload 3 /* currByte */
            sipush 255
            iand
            bipush 8
            if_icmpeq 67
        66: .line 277
            new java.util.zip.ZipException
            dup
            ldc "Invalid gzip compression method"
            invokespecial java.util.zip.ZipException.<init>:(Ljava/lang/String;)V
            athrow
        67: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.FLG:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        68: .line 279
            goto 1
        69: .line 283
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* currByte */
            putfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
        70: .line 284
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.MTIME:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        71: .line 285
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
        72: .line 286
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
        73: .line 287
            goto 1
        74: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_1
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
        75: .line 293
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_4
            if_icmpne 1
        76: .line 294
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.XFL:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        77: .line 295
            goto 1
        78: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.OS:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        79: .line 301
            goto 1
        80: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.FLAGS:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        81: .line 307
            goto 1
        82: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
            iload 3 /* currByte */
            sipush 255
            iand
            bipush 8
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            imul
            ishl
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
        83: .line 312
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_1
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
        84: .line 313
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_2
            if_icmpne 1
        85: .line 314
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.EXTRA:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        86: .line 315
            goto 1
        87: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
            iconst_1
            isub
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
        88: .line 321
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
            ifne 1
        89: .line 324
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
            bipush -5
            iand
            i2b
            putfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
        90: .line 325
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.FLAGS:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        91: .line 327
            goto 1
        92: .line 332
      StackMap locals:
      StackMap stack:
            iload 3 /* currByte */
            ifne 1
        93: .line 335
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
            bipush -9
            iand
            i2b
            putfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
        94: .line 336
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.FLAGS:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        95: .line 338
            goto 1
        96: .line 343
      StackMap locals:
      StackMap stack:
            iload 3 /* currByte */
            ifne 1
        97: .line 346
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
            bipush -17
            iand
            i2b
            putfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
        98: .line 347
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.FLAGS:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
        99: .line 349
            goto 1
       100: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_1
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
       101: .line 355
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_2
            if_icmpne 1
       102: .line 358
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
            bipush -3
            iand
            i2b
            putfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
       103: .line 359
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.FLAGS:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
       104: .line 361
            goto 1
       105: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
            iload 3 /* currByte */
            sipush 255
            iand
            bipush 8
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            imul
            ishl
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
       106: .line 366
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_1
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
       107: .line 367
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_4
            if_icmpne 1
       108: .line 370
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.ISIZE:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
       109: .line 371
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
       110: .line 372
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
       111: .line 374
            goto 1
       112: .line 378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
            iload 3 /* currByte */
            sipush 255
            iand
            bipush 8
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            imul
            ishl
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
       113: .line 379
            aload 0 /* this */
            dup
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_1
            iadd
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
       114: .line 380
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
            iconst_4
            if_icmpne 1
       115: .line 382
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
            i2l
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            invokevirtual java.util.zip.Inflater.getBytesWritten:()J
            lcmp
            ifeq 117
       116: .line 383
            new java.util.zip.ZipException
            dup
            ldc "Invalid input size"
            invokespecial java.util.zip.ZipException.<init>:(Ljava/lang/String;)V
            athrow
       117: .line 386
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.reset:()V
       118: .line 402
            aload 2 /* buffer */
            ifnull 120
       119: .line 403
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.release:(Ljava/nio/ByteBuffer;)V
       120: .line 387
      StackMap locals:
      StackMap stack:
            return
       121: .line 392
      StackMap locals:
      StackMap stack:
            new java.util.zip.ZipException
            dup
            invokespecial java.util.zip.ZipException.<init>:()V
            athrow
        end local 3 // byte currByte
       122: .line 396
      StackMap locals: org.eclipse.jetty.http.GZIPContentDecoder java.nio.ByteBuffer java.nio.ByteBuffer
      StackMap stack: java.util.zip.ZipException
            astore 3 /* x */
        start local 3 // java.util.zip.ZipException x
       123: .line 398
            new java.lang.RuntimeException
            dup
            aload 3 /* x */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.util.zip.ZipException x
       124: .line 401
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
       125: .line 402
            aload 2 /* buffer */
            ifnull 127
       126: .line 403
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.release:(Ljava/nio/ByteBuffer;)V
       127: .line 404
      StackMap locals: org.eclipse.jetty.http.GZIPContentDecoder java.nio.ByteBuffer java.nio.ByteBuffer top java.lang.Throwable
      StackMap stack:
            aload 4
            athrow
       128: .line 402
      StackMap locals: org.eclipse.jetty.http.GZIPContentDecoder java.nio.ByteBuffer java.nio.ByteBuffer
      StackMap stack:
            aload 2 /* buffer */
            ifnull 130
       129: .line 403
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder.release:(Ljava/nio/ByteBuffer;)V
       130: .line 405
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.nio.ByteBuffer buffer
        end local 1 // java.nio.ByteBuffer compressed
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0  131     0        this  Lorg/eclipse/jetty/http/GZIPContentDecoder;
            0  131     1  compressed  Ljava/nio/ByteBuffer;
            1  131     2      buffer  Ljava/nio/ByteBuffer;
           23   24     3      length  I
           26   27     3           x  Ljava/util/zip/DataFormatException;
           29   34     3       chunk  Ljava/nio/ByteBuffer;
           44   46     3       input  [B
           49   53     3   remaining  I
           57  122     3    currByte  B
          123  124     3           x  Ljava/util/zip/ZipException;
      Exception table:
        from    to  target  type
          22    24      25  Class java.util.zip.DataFormatException
           1    31     122  Class java.util.zip.ZipException
          34    36     122  Class java.util.zip.ZipException
          39   118     122  Class java.util.zip.ZipException
         121   122     122  Class java.util.zip.ZipException
           1    31     124  any
          34    36     124  any
          39   118     124  any
         121   124     124  any
    MethodParameters:
            Name  Flags
      compressed  

  private void reset();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
         0: .line 409
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            invokevirtual java.util.zip.Inflater.reset:()V
         1: .line 410
            aload 0 /* this */
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.INITIAL:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            putfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
         2: .line 411
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._size:I
         3: .line 412
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._value:I
         4: .line 413
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jetty.http.GZIPContentDecoder._flags:B
         5: .line 414
            return
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jetty/http/GZIPContentDecoder;

  public void destroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
         0: .line 419
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._inflater:Ljava/util/zip/Inflater;
            invokevirtual java.util.zip.Inflater.end:()V
         1: .line 420
            return
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/http/GZIPContentDecoder;

  public boolean isFinished();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
         0: .line 424
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._state:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.INITIAL:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/http/GZIPContentDecoder;

  public java.nio.ByteBuffer acquire(int);
    descriptor: (I)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
        start local 1 // int capacity
         0: .line 438
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._pool:Lorg/eclipse/jetty/io/ByteBufferPool;
            ifnonnull 1
            iload 1 /* capacity */
            invokestatic org.eclipse.jetty.util.BufferUtil.allocate:(I)Ljava/nio/ByteBuffer;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._pool:Lorg/eclipse/jetty/io/ByteBufferPool;
            iload 1 /* capacity */
            iconst_0
            invokeinterface org.eclipse.jetty.io.ByteBufferPool.acquire:(IZ)Ljava/nio/ByteBuffer;
      StackMap locals:
      StackMap stack: java.nio.ByteBuffer
         2: areturn
        end local 1 // int capacity
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jetty/http/GZIPContentDecoder;
            0    3     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public void release(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 452
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._pool:Lorg/eclipse/jetty/io/ByteBufferPool;
            ifnull 2
            aload 1 /* buffer */
            invokestatic org.eclipse.jetty.util.BufferUtil.isTheEmptyBuffer:(Ljava/nio/ByteBuffer;)Z
            ifne 2
         1: .line 453
            aload 0 /* this */
            getfield org.eclipse.jetty.http.GZIPContentDecoder._pool:Lorg/eclipse/jetty/io/ByteBufferPool;
            aload 1 /* buffer */
            invokeinterface org.eclipse.jetty.io.ByteBufferPool.release:(Ljava/nio/ByteBuffer;)V
         2: .line 454
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // org.eclipse.jetty.http.GZIPContentDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jetty/http/GZIPContentDecoder;
            0    3     1  buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      buffer  

  static int[] $SWITCH_TABLE$org$eclipse$jetty$http$GZIPContentDecoder$State();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 38
            getstatic org.eclipse.jetty.http.GZIPContentDecoder.$SWITCH_TABLE$org$eclipse$jetty$http$GZIPContentDecoder$State:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.eclipse.jetty.http.GZIPContentDecoder$State.values:()[Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.CM:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.COMMENT:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 12
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.CRC:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 15
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.DATA:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 14
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.EXTRA:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 10
            iastore
        15: goto 17
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        16: pop
      StackMap locals:
      StackMap stack:
        17: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.EXTRA_LENGTH:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 9
            iastore
        18: goto 20
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        19: pop
      StackMap locals:
      StackMap stack:
        20: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.FLAGS:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 8
            iastore
        21: goto 23
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        22: pop
      StackMap locals:
      StackMap stack:
        23: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.FLG:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            iconst_4
            iastore
        24: goto 26
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        25: pop
      StackMap locals:
      StackMap stack:
        26: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.HCRC:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 13
            iastore
        27: goto 29
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        28: pop
      StackMap locals:
      StackMap stack:
        29: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.ID:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            iconst_2
            iastore
        30: goto 32
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        31: pop
      StackMap locals:
      StackMap stack:
        32: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.INITIAL:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            iconst_1
            iastore
        33: goto 35
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        34: pop
      StackMap locals:
      StackMap stack:
        35: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.ISIZE:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 16
            iastore
        36: goto 38
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        37: pop
      StackMap locals:
      StackMap stack:
        38: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.MTIME:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            iconst_5
            iastore
        39: goto 41
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        40: pop
      StackMap locals:
      StackMap stack:
        41: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.NAME:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 11
            iastore
        42: goto 44
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        43: pop
      StackMap locals:
      StackMap stack:
        44: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.OS:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 7
            iastore
        45: goto 47
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        46: pop
      StackMap locals:
      StackMap stack:
        47: aload 0
            getstatic org.eclipse.jetty.http.GZIPContentDecoder$State.XFL:Lorg/eclipse/jetty/http/GZIPContentDecoder$State;
            invokevirtual org.eclipse.jetty.http.GZIPContentDecoder$State.ordinal:()I
            bipush 6
            iastore
        48: goto 50
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        49: pop
      StackMap locals:
      StackMap stack:
        50: aload 0
            dup
            putstatic org.eclipse.jetty.http.GZIPContentDecoder.$SWITCH_TABLE$org$eclipse$jetty$http$GZIPContentDecoder$State:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
          14    15      16  Class java.lang.NoSuchFieldError
          17    18      19  Class java.lang.NoSuchFieldError
          20    21      22  Class java.lang.NoSuchFieldError
          23    24      25  Class java.lang.NoSuchFieldError
          26    27      28  Class java.lang.NoSuchFieldError
          29    30      31  Class java.lang.NoSuchFieldError
          32    33      34  Class java.lang.NoSuchFieldError
          35    36      37  Class java.lang.NoSuchFieldError
          38    39      40  Class java.lang.NoSuchFieldError
          41    42      43  Class java.lang.NoSuchFieldError
          44    45      46  Class java.lang.NoSuchFieldError
          47    48      49  Class java.lang.NoSuchFieldError
}
SourceFile: "GZIPContentDecoder.java"
NestMembers:
  org.eclipse.jetty.http.GZIPContentDecoder$State
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  private final State = org.eclipse.jetty.http.GZIPContentDecoder$State of org.eclipse.jetty.http.GZIPContentDecoder