public class org.glassfish.grizzly.http.util.HttpCodecUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.http.util.HttpCodecUtils
  super_class: java.lang.Object
{
  static final byte[] EMPTY_ARRAY;
    descriptor: [B
    flags: (0x0018) ACC_STATIC, ACC_FINAL

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 34
            iconst_0
            newarray 8
            putstatic org.glassfish.grizzly.http.util.HttpCodecUtils.EMPTY_ARRAY:[B
         1: .line 35
            invokestatic org.glassfish.grizzly.http.util.HexUtils.getDecBytes:()[I
            putstatic org.glassfish.grizzly.http.util.HttpCodecUtils.DEC:[I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.http.util.HttpCodecUtils this
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.glassfish.grizzly.http.util.HttpCodecUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/http/util/HttpCodecUtils;

  public static void parseHost(org.glassfish.grizzly.http.util.DataChunk, org.glassfish.grizzly.http.util.DataChunk, org.glassfish.grizzly.http.HttpRequestPacket);
    descriptor: (Lorg/glassfish/grizzly/http/util/DataChunk;Lorg/glassfish/grizzly/http/util/DataChunk;Lorg/glassfish/grizzly/http/HttpRequestPacket;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=14, args_size=3
        start local 0 // org.glassfish.grizzly.http.util.DataChunk hostDC
        start local 1 // org.glassfish.grizzly.http.util.DataChunk serverNameDC
        start local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
         0: .line 39
            aload 0 /* hostDC */
            ifnonnull 7
         1: .line 43
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.getConnection:()Lorg/glassfish/grizzly/Connection;
            astore 3 /* connection */
        start local 3 // org.glassfish.grizzly.Connection connection
         2: .line 44
            aload 2 /* request */
            aload 3 /* connection */
            invokeinterface org.glassfish.grizzly.Connection.getLocalAddress:()Ljava/lang/Object;
            checkcast java.net.InetSocketAddress
            invokevirtual java.net.InetSocketAddress.getPort:()I
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
         3: .line 45
            aload 3 /* connection */
            invokeinterface org.glassfish.grizzly.Connection.getLocalAddress:()Ljava/lang/Object;
            checkcast java.net.InetSocketAddress
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            astore 4 /* localAddress */
        start local 4 // java.net.InetAddress localAddress
         4: .line 48
            aload 2 /* request */
            aload 4 /* localAddress */
            invokevirtual java.net.InetAddress.getHostName:()Ljava/lang/String;
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setLocalHost:(Ljava/lang/String;)V
         5: .line 49
            aload 1 /* serverNameDC */
            aload 4 /* localAddress */
            invokevirtual java.net.InetAddress.getHostName:()Ljava/lang/String;
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.setString:(Ljava/lang/String;)V
         6: .line 50
            return
        end local 4 // java.net.InetAddress localAddress
        end local 3 // org.glassfish.grizzly.Connection connection
         7: .line 53
      StackMap locals:
      StackMap stack:
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getType:()Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            getstatic org.glassfish.grizzly.http.util.DataChunk$Type.Bytes:Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            if_acmpeq 8
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getType:()Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            getstatic org.glassfish.grizzly.http.util.DataChunk$Type.String:Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            if_acmpne 53
         8: .line 54
      StackMap locals:
      StackMap stack:
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getStart:()I
            istore 3 /* valueS */
        start local 3 // int valueS
         9: .line 55
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getEnd:()I
            iload 3 /* valueS */
            isub
            istore 4 /* valueL */
        start local 4 // int valueL
        10: .line 56
            iconst_m1
            istore 5 /* colonPos */
        start local 5 // int colonPos
        11: .line 58
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getType:()Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            getstatic org.glassfish.grizzly.http.util.DataChunk$Type.Bytes:Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            if_acmpne 12
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getByteChunk:()Lorg/glassfish/grizzly/http/util/ByteChunk;
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getBuffer:()[B
            goto 13
      StackMap locals: int int int
      StackMap stack:
        12: aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.toString:()Ljava/lang/String;
            invokevirtual java.lang.String.getBytes:()[B
      StackMap locals:
      StackMap stack: byte[]
        13: astore 6 /* valueB */
        start local 6 // byte[] valueB
        14: .line 60
            aload 6 /* valueB */
            iload 3 /* valueS */
            baload
            bipush 91
            if_icmpne 15
            iconst_1
            goto 16
      StackMap locals: byte[]
      StackMap stack:
        15: iconst_0
      StackMap locals:
      StackMap stack: int
        16: istore 7 /* ipv6 */
        start local 7 // boolean ipv6
        17: .line 61
            iconst_0
            istore 8 /* bracketClosed */
        start local 8 // boolean bracketClosed
        18: .line 62
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        19: goto 29
        20: .line 63
      StackMap locals: int int int
      StackMap stack:
            aload 6 /* valueB */
            iload 9 /* i */
            iload 3 /* valueS */
            iadd
            baload
            istore 10 /* b */
        start local 10 // byte b
        21: .line 64
            iload 10 /* b */
            bipush 93
            if_icmpne 24
        22: .line 65
            iconst_1
            istore 8 /* bracketClosed */
        23: .line 66
            goto 28
      StackMap locals: int
      StackMap stack:
        24: iload 10 /* b */
            bipush 58
            if_icmpne 28
        25: .line 67
            iload 7 /* ipv6 */
            ifeq 26
            iload 8 /* bracketClosed */
            ifeq 28
        26: .line 68
      StackMap locals:
      StackMap stack:
            iload 9 /* i */
            istore 5 /* colonPos */
        27: .line 69
            goto 30
        end local 10 // byte b
        28: .line 62
      StackMap locals:
      StackMap stack:
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        29: iload 9 /* i */
            iload 4 /* valueL */
            if_icmplt 20
        end local 9 // int i
        30: .line 74
      StackMap locals:
      StackMap stack:
            iload 5 /* colonPos */
            ifge 37
        31: .line 75
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.isSecure:()Z
            ifne 34
        32: .line 77
            aload 2 /* request */
            bipush 80
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        33: .line 78
            goto 35
        34: .line 80
      StackMap locals:
      StackMap stack:
            aload 2 /* request */
            sipush 443
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        35: .line 83
      StackMap locals:
      StackMap stack:
            aload 1 /* serverNameDC */
            aload 6 /* valueB */
            iload 3 /* valueS */
            iload 3 /* valueS */
            iload 4 /* valueL */
            iadd
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.setBytes:([BII)V
        36: .line 84
            goto 96
        37: .line 85
      StackMap locals:
      StackMap stack:
            aload 1 /* serverNameDC */
            aload 6 /* valueB */
            iload 3 /* valueS */
            iload 3 /* valueS */
            iload 5 /* colonPos */
            iadd
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.setBytes:([BII)V
        38: .line 87
            iconst_0
            istore 9 /* port */
        start local 9 // int port
        39: .line 88
            iconst_1
            istore 10 /* mult */
        start local 10 // int mult
        40: .line 89
            iload 4 /* valueL */
            iconst_1
            isub
            istore 11 /* i */
        start local 11 // int i
        41: goto 50
        42: .line 90
      StackMap locals: int int int
      StackMap stack:
            getstatic org.glassfish.grizzly.http.util.HttpCodecUtils.DEC:[I
            aload 6 /* valueB */
            iload 11 /* i */
            iload 3 /* valueS */
            iadd
            baload
            iaload
            istore 12 /* charValue */
        start local 12 // int charValue
        43: .line 91
            iload 12 /* charValue */
            iconst_m1
            if_icmpne 47
        44: .line 92
            new java.lang.IllegalStateException
            dup
        45: .line 93
            ldc "Host header %s contained a non-decimal value in the port definition."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.toString:()Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
        46: .line 92
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        47: .line 95
      StackMap locals: int
      StackMap stack:
            iload 9 /* port */
            iload 12 /* charValue */
            iload 10 /* mult */
            imul
            iadd
            istore 9 /* port */
        48: .line 96
            iload 10 /* mult */
            bipush 10
            imul
            istore 10 /* mult */
        end local 12 // int charValue
        49: .line 89
            iinc 11 /* i */ -1
      StackMap locals:
      StackMap stack:
        50: iload 11 /* i */
            iload 5 /* colonPos */
            if_icmpgt 42
        end local 11 // int i
        51: .line 98
            aload 2 /* request */
            iload 9 /* port */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        end local 10 // int mult
        end local 9 // int port
        end local 8 // boolean bracketClosed
        end local 7 // boolean ipv6
        end local 6 // byte[] valueB
        end local 5 // int colonPos
        end local 4 // int valueL
        end local 3 // int valueS
        52: .line 101
            goto 96
        53: .line 102
      StackMap locals: org.glassfish.grizzly.http.util.DataChunk org.glassfish.grizzly.http.util.DataChunk org.glassfish.grizzly.http.HttpRequestPacket
      StackMap stack:
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getBufferChunk:()Lorg/glassfish/grizzly/http/util/BufferChunk;
            astore 3 /* valueBC */
        start local 3 // org.glassfish.grizzly.http.util.BufferChunk valueBC
        54: .line 103
            aload 3 /* valueBC */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getStart:()I
            istore 4 /* valueS */
        start local 4 // int valueS
        55: .line 104
            aload 3 /* valueBC */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getEnd:()I
            iload 4 /* valueS */
            isub
            istore 5 /* valueL */
        start local 5 // int valueL
        56: .line 105
            iconst_m1
            istore 6 /* colonPos */
        start local 6 // int colonPos
        57: .line 107
            aload 3 /* valueBC */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getBuffer:()Lorg/glassfish/grizzly/Buffer;
            astore 7 /* valueB */
        start local 7 // org.glassfish.grizzly.Buffer valueB
        58: .line 108
            aload 7 /* valueB */
            iload 4 /* valueS */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            bipush 91
            if_icmpne 59
            iconst_1
            goto 60
      StackMap locals: org.glassfish.grizzly.http.util.DataChunk org.glassfish.grizzly.http.util.DataChunk org.glassfish.grizzly.http.HttpRequestPacket org.glassfish.grizzly.http.util.BufferChunk int int int org.glassfish.grizzly.Buffer
      StackMap stack:
        59: iconst_0
      StackMap locals:
      StackMap stack: int
        60: istore 8 /* ipv6 */
        start local 8 // boolean ipv6
        61: .line 109
            iconst_0
            istore 9 /* bracketClosed */
        start local 9 // boolean bracketClosed
        62: .line 110
            iconst_0
            istore 10 /* i */
        start local 10 // int i
        63: goto 73
        64: .line 111
      StackMap locals: int int int
      StackMap stack:
            aload 7 /* valueB */
            iload 10 /* i */
            iload 4 /* valueS */
            iadd
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 11 /* b */
        start local 11 // byte b
        65: .line 112
            iload 11 /* b */
            bipush 93
            if_icmpne 68
        66: .line 113
            iconst_1
            istore 9 /* bracketClosed */
        67: .line 114
            goto 72
      StackMap locals: int
      StackMap stack:
        68: iload 11 /* b */
            bipush 58
            if_icmpne 72
        69: .line 115
            iload 8 /* ipv6 */
            ifeq 70
            iload 9 /* bracketClosed */
            ifeq 72
        70: .line 116
      StackMap locals:
      StackMap stack:
            iload 10 /* i */
            istore 6 /* colonPos */
        71: .line 117
            goto 74
        end local 11 // byte b
        72: .line 110
      StackMap locals:
      StackMap stack:
            iinc 10 /* i */ 1
      StackMap locals:
      StackMap stack:
        73: iload 10 /* i */
            iload 5 /* valueL */
            if_icmplt 64
        end local 10 // int i
        74: .line 122
      StackMap locals:
      StackMap stack:
            iload 6 /* colonPos */
            ifge 81
        75: .line 123
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.isSecure:()Z
            ifne 78
        76: .line 125
            aload 2 /* request */
            bipush 80
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        77: .line 126
            goto 79
        78: .line 128
      StackMap locals:
      StackMap stack:
            aload 2 /* request */
            sipush 443
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        79: .line 130
      StackMap locals:
      StackMap stack:
            aload 1 /* serverNameDC */
            aload 7 /* valueB */
            iload 4 /* valueS */
            iload 4 /* valueS */
            iload 5 /* valueL */
            iadd
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.setBuffer:(Lorg/glassfish/grizzly/Buffer;II)V
        80: .line 131
            goto 96
        81: .line 132
      StackMap locals:
      StackMap stack:
            aload 1 /* serverNameDC */
            aload 7 /* valueB */
            iload 4 /* valueS */
            iload 4 /* valueS */
            iload 6 /* colonPos */
            iadd
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.setBuffer:(Lorg/glassfish/grizzly/Buffer;II)V
        82: .line 134
            iconst_0
            istore 10 /* port */
        start local 10 // int port
        83: .line 135
            iconst_1
            istore 11 /* mult */
        start local 11 // int mult
        84: .line 136
            iload 5 /* valueL */
            iconst_1
            isub
            istore 12 /* i */
        start local 12 // int i
        85: goto 94
        86: .line 137
      StackMap locals: int int int
      StackMap stack:
            getstatic org.glassfish.grizzly.http.util.HttpCodecUtils.DEC:[I
            aload 7 /* valueB */
            iload 12 /* i */
            iload 4 /* valueS */
            iadd
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            iaload
            istore 13 /* charValue */
        start local 13 // int charValue
        87: .line 138
            iload 13 /* charValue */
            iconst_m1
            if_icmpne 91
        88: .line 140
            new java.lang.IllegalStateException
            dup
        89: .line 141
            ldc "Host header %s contained a non-decimal value in the port definition."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.toString:()Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
        90: .line 140
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        91: .line 143
      StackMap locals: int
      StackMap stack:
            iload 10 /* port */
            iload 13 /* charValue */
            iload 11 /* mult */
            imul
            iadd
            istore 10 /* port */
        92: .line 144
            iload 11 /* mult */
            bipush 10
            imul
            istore 11 /* mult */
        end local 13 // int charValue
        93: .line 136
            iinc 12 /* i */ -1
      StackMap locals:
      StackMap stack:
        94: iload 12 /* i */
            iload 6 /* colonPos */
            if_icmpgt 86
        end local 12 // int i
        95: .line 146
            aload 2 /* request */
            iload 10 /* port */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        end local 11 // int mult
        end local 10 // int port
        end local 9 // boolean bracketClosed
        end local 8 // boolean ipv6
        end local 7 // org.glassfish.grizzly.Buffer valueB
        end local 6 // int colonPos
        end local 5 // int valueL
        end local 4 // int valueS
        end local 3 // org.glassfish.grizzly.http.util.BufferChunk valueBC
        96: .line 150
      StackMap locals: org.glassfish.grizzly.http.util.DataChunk org.glassfish.grizzly.http.util.DataChunk org.glassfish.grizzly.http.HttpRequestPacket
      StackMap stack:
            return
        end local 2 // org.glassfish.grizzly.http.HttpRequestPacket request
        end local 1 // org.glassfish.grizzly.http.util.DataChunk serverNameDC
        end local 0 // org.glassfish.grizzly.http.util.DataChunk hostDC
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   97     0         hostDC  Lorg/glassfish/grizzly/http/util/DataChunk;
            0   97     1   serverNameDC  Lorg/glassfish/grizzly/http/util/DataChunk;
            0   97     2        request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            2    7     3     connection  Lorg/glassfish/grizzly/Connection;
            4    7     4   localAddress  Ljava/net/InetAddress;
            9   52     3         valueS  I
           10   52     4         valueL  I
           11   52     5       colonPos  I
           14   52     6         valueB  [B
           17   52     7           ipv6  Z
           18   52     8  bracketClosed  Z
           19   30     9              i  I
           21   28    10              b  B
           39   52     9           port  I
           40   52    10           mult  I
           41   51    11              i  I
           43   49    12      charValue  I
           54   96     3        valueBC  Lorg/glassfish/grizzly/http/util/BufferChunk;
           55   96     4         valueS  I
           56   96     5         valueL  I
           57   96     6       colonPos  I
           58   96     7         valueB  Lorg/glassfish/grizzly/Buffer;
           61   96     8           ipv6  Z
           62   96     9  bracketClosed  Z
           63   74    10              i  I
           65   72    11              b  B
           83   96    10           port  I
           84   96    11           mult  I
           85   95    12              i  I
           87   93    13      charValue  I
    MethodParameters:
              Name  Flags
      hostDC        final
      serverNameDC  final
      request       final

  public static int checkEOL(org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState, org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;Lorg/glassfish/grizzly/Buffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState parsingState
        start local 1 // org.glassfish.grizzly.Buffer input
         0: .line 153
            aload 0 /* parsingState */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
            istore 2 /* offset */
        start local 2 // int offset
         1: .line 154
            aload 1 /* input */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            iload 2 /* offset */
            isub
            istore 3 /* avail */
        start local 3 // int avail
         2: .line 159
            iload 3 /* avail */
            iconst_2
            if_icmplt 7
         3: .line 160
            aload 1 /* input */
            iload 2 /* offset */
            invokeinterface org.glassfish.grizzly.Buffer.getShort:(I)S
            istore 6 /* s */
        start local 6 // short s
         4: .line 161
            iload 6 /* s */
            bipush 8
            iushr
            i2b
            istore 4 /* b1 */
        start local 4 // byte b1
         5: .line 162
            iload 6 /* s */
            sipush 255
            iand
            i2b
            istore 5 /* b2 */
        end local 6 // short s
        start local 5 // byte b2
         6: .line 163
            goto 12
        end local 5 // byte b2
        end local 4 // byte b1
      StackMap locals: int int
      StackMap stack:
         7: iload 3 /* avail */
            iconst_1
            if_icmpne 11
         8: .line 164
            aload 1 /* input */
            iload 2 /* offset */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 4 /* b1 */
        start local 4 // byte b1
         9: .line 165
            iconst_m1
            istore 5 /* b2 */
        start local 5 // byte b2
        10: .line 166
            goto 12
        end local 5 // byte b2
        end local 4 // byte b1
        11: .line 167
      StackMap locals:
      StackMap stack:
            bipush -2
            ireturn
        start local 4 // byte b1
        start local 5 // byte b2
        12: .line 170
      StackMap locals: int int
      StackMap stack:
            aload 0 /* parsingState */
            iload 4 /* b1 */
            iload 5 /* b2 */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.checkCRLF:(Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;BB)I
            ireturn
        end local 5 // byte b2
        end local 4 // byte b1
        end local 3 // int avail
        end local 2 // int offset
        end local 1 // org.glassfish.grizzly.Buffer input
        end local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState parsingState
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0  parsingState  Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;
            0   13     1         input  Lorg/glassfish/grizzly/Buffer;
            1   13     2        offset  I
            2   13     3         avail  I
            5    7     4            b1  B
            9   11     4            b1  B
           12   13     4            b1  B
            6    7     5            b2  B
           10   11     5            b2  B
           12   13     5            b2  B
            4    6     6             s  S
    MethodParameters:
              Name  Flags
      parsingState  final
      input         final

  public static int checkEOL(org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState, byte[], int);
    descriptor: (Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;[BI)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState parsingState
        start local 1 // byte[] input
        start local 2 // int end
         0: .line 174
            aload 0 /* parsingState */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.arrayOffset:I
            istore 3 /* arrayOffs */
        start local 3 // int arrayOffs
         1: .line 175
            iload 3 /* arrayOffs */
            aload 0 /* parsingState */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
            iadd
            istore 4 /* offset */
        start local 4 // int offset
         2: .line 176
            aload 0 /* parsingState */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.packetLimit:I
            iload 3 /* arrayOffs */
            iadd
            iload 2 /* end */
            invokestatic java.lang.Math.min:(II)I
            iload 4 /* offset */
            isub
            istore 5 /* avail */
        start local 5 // int avail
         3: .line 181
            iload 5 /* avail */
            iconst_2
            if_icmplt 7
         4: .line 182
            aload 1 /* input */
            iload 4 /* offset */
            baload
            istore 6 /* b1 */
        start local 6 // byte b1
         5: .line 183
            aload 1 /* input */
            iload 4 /* offset */
            iconst_1
            iadd
            baload
            istore 7 /* b2 */
        start local 7 // byte b2
         6: .line 184
            goto 12
        end local 7 // byte b2
        end local 6 // byte b1
      StackMap locals: int int int
      StackMap stack:
         7: iload 5 /* avail */
            iconst_1
            if_icmpne 11
         8: .line 185
            aload 1 /* input */
            iload 4 /* offset */
            baload
            istore 6 /* b1 */
        start local 6 // byte b1
         9: .line 186
            iconst_m1
            istore 7 /* b2 */
        start local 7 // byte b2
        10: .line 187
            goto 12
        end local 7 // byte b2
        end local 6 // byte b1
        11: .line 188
      StackMap locals:
      StackMap stack:
            bipush -2
            ireturn
        start local 6 // byte b1
        start local 7 // byte b2
        12: .line 191
      StackMap locals: int int
      StackMap stack:
            aload 0 /* parsingState */
            iload 6 /* b1 */
            iload 7 /* b2 */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.checkCRLF:(Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;BB)I
            ireturn
        end local 7 // byte b2
        end local 6 // byte b1
        end local 5 // int avail
        end local 4 // int offset
        end local 3 // int arrayOffs
        end local 2 // int end
        end local 1 // byte[] input
        end local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState parsingState
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0  parsingState  Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;
            0   13     1         input  [B
            0   13     2           end  I
            1   13     3     arrayOffs  I
            2   13     4        offset  I
            3   13     5         avail  I
            5    7     6            b1  B
            9   11     6            b1  B
           12   13     6            b1  B
            6    7     7            b2  B
           10   11     7            b2  B
           12   13     7            b2  B
    MethodParameters:
              Name  Flags
      parsingState  final
      input         final
      end           final

  public static boolean findEOL(org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState, org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;Lorg/glassfish/grizzly/Buffer;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState state
        start local 1 // org.glassfish.grizzly.Buffer input
         0: .line 195
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
            istore 2 /* offset */
        start local 2 // int offset
         1: .line 196
            aload 1 /* input */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.packetLimit:I
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* limit */
        start local 3 // int limit
         2: .line 198
            goto 13
         3: .line 199
      StackMap locals: int int
      StackMap stack:
            aload 1 /* input */
            iload 2 /* offset */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 4 /* b */
        start local 4 // byte b
         4: .line 200
            iload 4 /* b */
            bipush 13
            if_icmpne 7
         5: .line 201
            aload 0 /* state */
            iload 2 /* offset */
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
         6: .line 202
            goto 12
      StackMap locals: int
      StackMap stack:
         7: iload 4 /* b */
            bipush 10
            if_icmpne 12
         8: .line 203
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
            iconst_m1
            if_icmpne 10
         9: .line 204
            aload 0 /* state */
            iload 2 /* offset */
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
        10: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* state */
            iload 2 /* offset */
            iconst_1
            iadd
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
        11: .line 208
            iconst_1
            ireturn
        12: .line 211
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 1
        end local 4 // byte b
        13: .line 198
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* limit */
            if_icmplt 3
        14: .line 214
            aload 0 /* state */
            iload 2 /* offset */
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
        15: .line 216
            iconst_0
            ireturn
        end local 3 // int limit
        end local 2 // int offset
        end local 1 // org.glassfish.grizzly.Buffer input
        end local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState state
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0   state  Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;
            0   16     1   input  Lorg/glassfish/grizzly/Buffer;
            1   16     2  offset  I
            2   16     3   limit  I
            4   13     4       b  B
    MethodParameters:
       Name  Flags
      state  final
      input  final

  public static boolean findEOL(org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState, byte[], int);
    descriptor: (Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;[BI)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState state
        start local 1 // byte[] input
        start local 2 // int end
         0: .line 220
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.arrayOffset:I
            istore 3 /* arrayOffs */
        start local 3 // int arrayOffs
         1: .line 221
            iload 3 /* arrayOffs */
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
            iadd
            istore 4 /* offset */
        start local 4 // int offset
         2: .line 223
            iload 2 /* end */
            iload 3 /* arrayOffs */
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.packetLimit:I
            iadd
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* limit */
        start local 5 // int limit
         3: .line 225
            goto 14
         4: .line 226
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* input */
            iload 4 /* offset */
            baload
            istore 6 /* b */
        start local 6 // byte b
         5: .line 227
            iload 6 /* b */
            bipush 13
            if_icmpne 8
         6: .line 228
            aload 0 /* state */
            iload 4 /* offset */
            iload 3 /* arrayOffs */
            isub
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
         7: .line 229
            goto 13
      StackMap locals: int
      StackMap stack:
         8: iload 6 /* b */
            bipush 10
            if_icmpne 13
         9: .line 230
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
            iconst_m1
            if_icmpne 11
        10: .line 231
            aload 0 /* state */
            iload 4 /* offset */
            iload 3 /* arrayOffs */
            isub
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
        11: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* state */
            iload 4 /* offset */
            iconst_1
            iadd
            iload 3 /* arrayOffs */
            isub
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
        12: .line 235
            iconst_1
            ireturn
        13: .line 238
      StackMap locals:
      StackMap stack:
            iinc 4 /* offset */ 1
        end local 6 // byte b
        14: .line 225
      StackMap locals:
      StackMap stack:
            iload 4 /* offset */
            iload 5 /* limit */
            if_icmplt 4
        15: .line 241
            aload 0 /* state */
            iload 4 /* offset */
            iload 3 /* arrayOffs */
            isub
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
        16: .line 243
            iconst_0
            ireturn
        end local 5 // int limit
        end local 4 // int offset
        end local 3 // int arrayOffs
        end local 2 // int end
        end local 1 // byte[] input
        end local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState state
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0      state  Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;
            0   17     1      input  [B
            0   17     2        end  I
            1   17     3  arrayOffs  I
            2   17     4     offset  I
            3   17     5      limit  I
            5   14     6          b  B
    MethodParameters:
       Name  Flags
      state  final
      input  final
      end    final

  public static int findSpace(org.glassfish.grizzly.Buffer, int, int);
    descriptor: (Lorg/glassfish/grizzly/Buffer;II)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.glassfish.grizzly.Buffer input
        start local 1 // int offset
        start local 2 // int packetLimit
         0: .line 247
            aload 0 /* input */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            iload 2 /* packetLimit */
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* limit */
        start local 3 // int limit
         1: .line 248
            goto 6
         2: .line 249
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            iload 1 /* offset */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 4 /* b */
        start local 4 // byte b
         3: .line 250
            iload 4 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isSpaceOrTab:(B)Z
            ifeq 5
         4: .line 251
            iload 1 /* offset */
            ireturn
         5: .line 254
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 4 // byte b
         6: .line 248
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 3 /* limit */
            if_icmplt 2
         7: .line 257
            iconst_m1
            ireturn
        end local 3 // int limit
        end local 2 // int packetLimit
        end local 1 // int offset
        end local 0 // org.glassfish.grizzly.Buffer input
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0        input  Lorg/glassfish/grizzly/Buffer;
            0    8     1       offset  I
            0    8     2  packetLimit  I
            1    8     3        limit  I
            3    6     4            b  B
    MethodParameters:
             Name  Flags
      input        final
      offset       
      packetLimit  final

  public static int findSpace(byte[], int, int, int);
    descriptor: ([BIII)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=6, args_size=4
        start local 0 // byte[] input
        start local 1 // int offset
        start local 2 // int end
        start local 3 // int packetLimit
         0: .line 261
            iload 2 /* end */
            iload 3 /* packetLimit */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* limit */
        start local 4 // int limit
         1: .line 262
            goto 6
         2: .line 263
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            iload 1 /* offset */
            baload
            istore 5 /* b */
        start local 5 // byte b
         3: .line 264
            iload 5 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isSpaceOrTab:(B)Z
            ifeq 5
         4: .line 265
            iload 1 /* offset */
            ireturn
         5: .line 268
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 5 // byte b
         6: .line 262
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 4 /* limit */
            if_icmplt 2
         7: .line 271
            iconst_m1
            ireturn
        end local 4 // int limit
        end local 3 // int packetLimit
        end local 2 // int end
        end local 1 // int offset
        end local 0 // byte[] input
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0        input  [B
            0    8     1       offset  I
            0    8     2          end  I
            0    8     3  packetLimit  I
            1    8     4        limit  I
            3    6     5            b  B
    MethodParameters:
             Name  Flags
      input        final
      offset       
      end          final
      packetLimit  final

  public static int skipSpaces(org.glassfish.grizzly.Buffer, int, int);
    descriptor: (Lorg/glassfish/grizzly/Buffer;II)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.glassfish.grizzly.Buffer input
        start local 1 // int offset
        start local 2 // int packetLimit
         0: .line 275
            aload 0 /* input */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            iload 2 /* packetLimit */
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* limit */
        start local 3 // int limit
         1: .line 276
            goto 6
         2: .line 277
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            iload 1 /* offset */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 4 /* b */
        start local 4 // byte b
         3: .line 278
            iload 4 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isNotSpaceAndTab:(B)Z
            ifeq 5
         4: .line 279
            iload 1 /* offset */
            ireturn
         5: .line 282
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 4 // byte b
         6: .line 276
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 3 /* limit */
            if_icmplt 2
         7: .line 285
            iconst_m1
            ireturn
        end local 3 // int limit
        end local 2 // int packetLimit
        end local 1 // int offset
        end local 0 // org.glassfish.grizzly.Buffer input
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0        input  Lorg/glassfish/grizzly/Buffer;
            0    8     1       offset  I
            0    8     2  packetLimit  I
            1    8     3        limit  I
            3    6     4            b  B
    MethodParameters:
             Name  Flags
      input        final
      offset       
      packetLimit  final

  public static int skipSpaces(byte[], int, int, int);
    descriptor: ([BIII)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=6, args_size=4
        start local 0 // byte[] input
        start local 1 // int offset
        start local 2 // int end
        start local 3 // int packetLimit
         0: .line 289
            iload 2 /* end */
            iload 3 /* packetLimit */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* limit */
        start local 4 // int limit
         1: .line 290
            goto 6
         2: .line 291
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            iload 1 /* offset */
            baload
            istore 5 /* b */
        start local 5 // byte b
         3: .line 292
            iload 5 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isNotSpaceAndTab:(B)Z
            ifeq 5
         4: .line 293
            iload 1 /* offset */
            ireturn
         5: .line 296
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 5 // byte b
         6: .line 290
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 4 /* limit */
            if_icmplt 2
         7: .line 299
            iconst_m1
            ireturn
        end local 4 // int limit
        end local 3 // int packetLimit
        end local 2 // int end
        end local 1 // int offset
        end local 0 // byte[] input
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0        input  [B
            0    8     1       offset  I
            0    8     2          end  I
            0    8     3  packetLimit  I
            1    8     4        limit  I
            3    6     5            b  B
    MethodParameters:
             Name  Flags
      input        final
      offset       
      end          final
      packetLimit  final

  public static int indexOf(org.glassfish.grizzly.Buffer, int, byte, int);
    descriptor: (Lorg/glassfish/grizzly/Buffer;IBI)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=6, args_size=4
        start local 0 // org.glassfish.grizzly.Buffer input
        start local 1 // int offset
        start local 2 // byte b
        start local 3 // int packetLimit
         0: .line 303
            aload 0 /* input */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            iload 3 /* packetLimit */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* limit */
        start local 4 // int limit
         1: .line 304
            goto 6
         2: .line 305
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            iload 1 /* offset */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 5 /* currentByte */
        start local 5 // byte currentByte
         3: .line 306
            iload 5 /* currentByte */
            iload 2 /* b */
            if_icmpne 5
         4: .line 307
            iload 1 /* offset */
            ireturn
         5: .line 310
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 5 // byte currentByte
         6: .line 304
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 4 /* limit */
            if_icmplt 2
         7: .line 313
            iconst_m1
            ireturn
        end local 4 // int limit
        end local 3 // int packetLimit
        end local 2 // byte b
        end local 1 // int offset
        end local 0 // org.glassfish.grizzly.Buffer input
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0        input  Lorg/glassfish/grizzly/Buffer;
            0    8     1       offset  I
            0    8     2            b  B
            0    8     3  packetLimit  I
            1    8     4        limit  I
            3    6     5  currentByte  B
    MethodParameters:
             Name  Flags
      input        final
      offset       
      b            final
      packetLimit  final

  public static org.glassfish.grizzly.Buffer getLongAsBuffer(org.glassfish.grizzly.memory.MemoryManager, long);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;J)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // long length
         0: .line 317
            aload 0 /* memoryManager */
            bipush 20
            invokeinterface org.glassfish.grizzly.memory.MemoryManager.allocate:(I)Lorg/glassfish/grizzly/Buffer;
            astore 3 /* b */
        start local 3 // org.glassfish.grizzly.Buffer b
         1: .line 318
            aload 3 /* b */
            iconst_1
            invokeinterface org.glassfish.grizzly.Buffer.allowBufferDispose:(Z)V
         2: .line 319
            lload 1 /* length */
            aload 3 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpUtils.longToBuffer:(JLorg/glassfish/grizzly/Buffer;)V
         3: .line 320
            aload 3 /* b */
            areturn
        end local 3 // org.glassfish.grizzly.Buffer b
        end local 1 // long length
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    4     1         length  J
            1    4     3              b  Lorg/glassfish/grizzly/Buffer;
    MethodParameters:
               Name  Flags
      memoryManager  final
      length         final

  public static org.glassfish.grizzly.Buffer put(org.glassfish.grizzly.memory.MemoryManager, org.glassfish.grizzly.Buffer, byte[], org.glassfish.grizzly.http.util.DataChunk);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;[BLorg/glassfish/grizzly/http/util/DataChunk;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // org.glassfish.grizzly.Buffer dstBuffer
        start local 2 // byte[] tempBuffer
        start local 3 // org.glassfish.grizzly.http.util.DataChunk chunk
         0: .line 325
            aload 3 /* chunk */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.isNull:()Z
            ifeq 2
         1: .line 326
            aload 1 /* dstBuffer */
            areturn
         2: .line 329
      StackMap locals:
      StackMap stack:
            aload 3 /* chunk */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getType:()Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            getstatic org.glassfish.grizzly.http.util.DataChunk$Type.Bytes:Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            if_acmpne 5
         3: .line 330
            aload 3 /* chunk */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getByteChunk:()Lorg/glassfish/grizzly/http/util/ByteChunk;
            astore 4 /* byteChunk */
        start local 4 // org.glassfish.grizzly.http.util.ByteChunk byteChunk
         4: .line 331
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            aload 4 /* byteChunk */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getBuffer:()[B
            aload 4 /* byteChunk */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getStart:()I
            aload 4 /* byteChunk */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getLength:()I
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.put:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;[BII)Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 4 // org.glassfish.grizzly.http.util.ByteChunk byteChunk
         5: .line 332
      StackMap locals:
      StackMap stack:
            aload 3 /* chunk */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getType:()Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            getstatic org.glassfish.grizzly.http.util.DataChunk$Type.Buffer:Lorg/glassfish/grizzly/http/util/DataChunk$Type;
            if_acmpne 11
         6: .line 333
            aload 3 /* chunk */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getBufferChunk:()Lorg/glassfish/grizzly/http/util/BufferChunk;
            astore 4 /* bc */
        start local 4 // org.glassfish.grizzly.http.util.BufferChunk bc
         7: .line 334
            aload 4 /* bc */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getLength:()I
            istore 5 /* length */
        start local 5 // int length
         8: .line 335
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            iload 5 /* length */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.checkAndResizeIfNeeded:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
            astore 1 /* dstBuffer */
         9: .line 337
            aload 1 /* dstBuffer */
            aload 4 /* bc */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getBuffer:()Lorg/glassfish/grizzly/Buffer;
            aload 4 /* bc */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getStart:()I
            iload 5 /* length */
            invokeinterface org.glassfish.grizzly.Buffer.put:(Lorg/glassfish/grizzly/Buffer;II)Lorg/glassfish/grizzly/Buffer;
            pop
        10: .line 339
            aload 1 /* dstBuffer */
            areturn
        end local 5 // int length
        end local 4 // org.glassfish.grizzly.http.util.BufferChunk bc
        11: .line 341
      StackMap locals:
      StackMap stack:
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            aload 2 /* tempBuffer */
            aload 3 /* chunk */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.toString:()Ljava/lang/String;
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.put:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;[BLjava/lang/String;)Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 3 // org.glassfish.grizzly.http.util.DataChunk chunk
        end local 2 // byte[] tempBuffer
        end local 1 // org.glassfish.grizzly.Buffer dstBuffer
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   12     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0   12     1      dstBuffer  Lorg/glassfish/grizzly/Buffer;
            0   12     2     tempBuffer  [B
            0   12     3          chunk  Lorg/glassfish/grizzly/http/util/DataChunk;
            4    5     4      byteChunk  Lorg/glassfish/grizzly/http/util/ByteChunk;
            7   11     4             bc  Lorg/glassfish/grizzly/http/util/BufferChunk;
            8   11     5         length  I
    MethodParameters:
               Name  Flags
      memoryManager  final
      dstBuffer      
      tempBuffer     final
      chunk          final

  public static org.glassfish.grizzly.Buffer put(org.glassfish.grizzly.memory.MemoryManager, org.glassfish.grizzly.Buffer, byte[], java.lang.String);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;[BLjava/lang/String;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=10, args_size=4
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // org.glassfish.grizzly.Buffer dstBuffer
        start local 2 // byte[] tempBuffer
        start local 3 // java.lang.String s
         0: .line 346
            aload 3 /* s */
            invokevirtual java.lang.String.length:()I
            istore 4 /* size */
        start local 4 // int size
         1: .line 347
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            iload 4 /* size */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.checkAndResizeIfNeeded:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
            astore 1 /* dstBuffer */
         2: .line 349
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.hasArray:()Z
            ifeq 16
         3: .line 351
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.array:()[B
            astore 5 /* array */
        start local 5 // byte[] array
         4: .line 352
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.arrayOffset:()I
            istore 6 /* arrayOffs */
        start local 6 // int arrayOffs
         5: .line 353
            iload 6 /* arrayOffs */
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.position:()I
            iadd
            istore 7 /* pos */
        start local 7 // int pos
         6: .line 356
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         7: goto 13
         8: .line 357
      StackMap locals: org.glassfish.grizzly.memory.MemoryManager org.glassfish.grizzly.Buffer byte[] java.lang.String int byte[] int int int
      StackMap stack:
            aload 3 /* s */
            iload 8 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            i2b
            istore 9 /* b */
        start local 9 // byte b
         9: .line 358
            aload 5 /* array */
            iload 7 /* pos */
            iinc 7 /* pos */ 1
            iload 9 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isNonPrintableUsAscii:(I)Z
            ifeq 10
            bipush 32
            goto 11
      StackMap locals: org.glassfish.grizzly.memory.MemoryManager org.glassfish.grizzly.Buffer byte[] java.lang.String int byte[] int int int int
      StackMap stack: byte[] int
        10: iload 9 /* b */
      StackMap locals: org.glassfish.grizzly.memory.MemoryManager org.glassfish.grizzly.Buffer byte[] java.lang.String int byte[] int int int int
      StackMap stack: byte[] int int
        11: bastore
        end local 9 // byte b
        12: .line 356
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 8 /* i */
            iload 4 /* size */
            if_icmplt 8
        end local 8 // int i
        14: .line 361
            aload 1 /* dstBuffer */
            iload 7 /* pos */
            iload 6 /* arrayOffs */
            isub
            invokeinterface org.glassfish.grizzly.Buffer.position:(I)Lorg/glassfish/grizzly/Buffer;
            pop
        end local 7 // int pos
        end local 6 // int arrayOffs
        end local 5 // byte[] array
        15: .line 362
            goto 17
        16: .line 363
      StackMap locals: org.glassfish.grizzly.memory.MemoryManager org.glassfish.grizzly.Buffer byte[] java.lang.String int
      StackMap stack:
            aload 3 /* s */
            aload 2 /* tempBuffer */
            aload 1 /* dstBuffer */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.fastAsciiEncode:(Ljava/lang/String;[BLorg/glassfish/grizzly/Buffer;)V
        17: .line 366
      StackMap locals:
      StackMap stack:
            aload 1 /* dstBuffer */
            areturn
        end local 4 // int size
        end local 3 // java.lang.String s
        end local 2 // byte[] tempBuffer
        end local 1 // org.glassfish.grizzly.Buffer dstBuffer
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   18     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0   18     1      dstBuffer  Lorg/glassfish/grizzly/Buffer;
            0   18     2     tempBuffer  [B
            0   18     3              s  Ljava/lang/String;
            1   18     4           size  I
            4   15     5          array  [B
            5   15     6      arrayOffs  I
            6   15     7            pos  I
            7   14     8              i  I
            9   12     9              b  B
    MethodParameters:
               Name  Flags
      memoryManager  final
      dstBuffer      
      tempBuffer     final
      s              final

  public static org.glassfish.grizzly.Buffer put(org.glassfish.grizzly.memory.MemoryManager, org.glassfish.grizzly.Buffer, byte[]);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;[B)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // org.glassfish.grizzly.Buffer dstBuffer
        start local 2 // byte[] array
         0: .line 370
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            aload 2 /* array */
            iconst_0
            aload 2 /* array */
            arraylength
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.put:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;[BII)Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 2 // byte[] array
        end local 1 // org.glassfish.grizzly.Buffer dstBuffer
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    1     1      dstBuffer  Lorg/glassfish/grizzly/Buffer;
            0    1     2          array  [B
    MethodParameters:
               Name  Flags
      memoryManager  final
      dstBuffer      
      array          final

  public static org.glassfish.grizzly.Buffer put(org.glassfish.grizzly.memory.MemoryManager, org.glassfish.grizzly.Buffer, byte[], int, int);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;[BII)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // org.glassfish.grizzly.Buffer dstBuffer
        start local 2 // byte[] array
        start local 3 // int off
        start local 4 // int len
         0: .line 375
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            iload 4 /* len */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.checkAndResizeIfNeeded:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
            astore 1 /* dstBuffer */
         1: .line 377
            aload 1 /* dstBuffer */
            aload 2 /* array */
            iload 3 /* off */
            iload 4 /* len */
            invokeinterface org.glassfish.grizzly.Buffer.put:([BII)Lorg/glassfish/grizzly/Buffer;
            pop
         2: .line 379
            aload 1 /* dstBuffer */
            areturn
        end local 4 // int len
        end local 3 // int off
        end local 2 // byte[] array
        end local 1 // org.glassfish.grizzly.Buffer dstBuffer
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    3     1      dstBuffer  Lorg/glassfish/grizzly/Buffer;
            0    3     2          array  [B
            0    3     3            off  I
            0    3     4            len  I
    MethodParameters:
               Name  Flags
      memoryManager  final
      dstBuffer      
      array          final
      off            final
      len            final

  public static org.glassfish.grizzly.Buffer put(org.glassfish.grizzly.memory.MemoryManager, org.glassfish.grizzly.Buffer, org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // org.glassfish.grizzly.Buffer dstBuffer
        start local 2 // org.glassfish.grizzly.Buffer buffer
         0: .line 384
            aload 2 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            istore 3 /* addSize */
        start local 3 // int addSize
         1: .line 386
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            iload 3 /* addSize */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.checkAndResizeIfNeeded:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
            astore 1 /* dstBuffer */
         2: .line 388
            aload 1 /* dstBuffer */
            aload 2 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.put:(Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/Buffer;
            pop
         3: .line 390
            aload 1 /* dstBuffer */
            areturn
        end local 3 // int addSize
        end local 2 // org.glassfish.grizzly.Buffer buffer
        end local 1 // org.glassfish.grizzly.Buffer dstBuffer
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    4     1      dstBuffer  Lorg/glassfish/grizzly/Buffer;
            0    4     2         buffer  Lorg/glassfish/grizzly/Buffer;
            1    4     3        addSize  I
    MethodParameters:
               Name  Flags
      memoryManager  final
      dstBuffer      
      buffer         final

  public static org.glassfish.grizzly.Buffer put(org.glassfish.grizzly.memory.MemoryManager, org.glassfish.grizzly.Buffer, byte);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;B)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // org.glassfish.grizzly.Buffer dstBuffer
        start local 2 // byte value
         0: .line 395
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.hasRemaining:()Z
            ifne 2
         1: .line 396
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            iconst_1
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.resizeBuffer:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
            astore 1 /* dstBuffer */
         2: .line 399
      StackMap locals:
      StackMap stack:
            aload 1 /* dstBuffer */
            iload 2 /* value */
            invokeinterface org.glassfish.grizzly.Buffer.put:(B)Lorg/glassfish/grizzly/Buffer;
            pop
         3: .line 401
            aload 1 /* dstBuffer */
            areturn
        end local 2 // byte value
        end local 1 // org.glassfish.grizzly.Buffer dstBuffer
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    4     1      dstBuffer  Lorg/glassfish/grizzly/Buffer;
            0    4     2          value  B
    MethodParameters:
               Name  Flags
      memoryManager  final
      dstBuffer      
      value          final

  public static org.glassfish.grizzly.Buffer resizeBuffer(org.glassfish.grizzly.memory.MemoryManager, org.glassfish.grizzly.Buffer, int);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // org.glassfish.grizzly.Buffer buffer
        start local 2 // int grow
         0: .line 407
            aload 0 /* memoryManager */
            aload 1 /* buffer */
            aload 1 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.capacity:()I
            iload 2 /* grow */
            iadd
            aload 1 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.capacity:()I
            iconst_3
            imul
            iconst_2
            idiv
            iconst_1
            iadd
            invokestatic java.lang.Math.max:(II)I
            invokeinterface org.glassfish.grizzly.memory.MemoryManager.reallocate:(Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
            areturn
        end local 2 // int grow
        end local 1 // org.glassfish.grizzly.Buffer buffer
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    1     1         buffer  Lorg/glassfish/grizzly/Buffer;
            0    1     2           grow  I
    MethodParameters:
               Name  Flags
      memoryManager  final
      buffer         final
      grow           final

  public static boolean isNotSpaceAndTab(byte);
    descriptor: (B)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte b
         0: .line 411
            iload 0 /* b */
            bipush 32
            if_icmpeq 1
            iload 0 /* b */
            bipush 9
            if_icmpeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     b  B
    MethodParameters:
      Name  Flags
      b     final

  public static boolean isSpaceOrTab(byte);
    descriptor: (B)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte b
         0: .line 415
            iload 0 /* b */
            bipush 32
            if_icmpeq 1
            iload 0 /* b */
            bipush 9
            if_icmpeq 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // byte b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     b  B
    MethodParameters:
      Name  Flags
      b     final

  public static byte[] toCheckedByteArray(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)[B
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.CharSequence s
         0: .line 427
            aload 0 /* s */
            invokeinterface java.lang.CharSequence.length:()I
            newarray 8
            astore 1 /* array */
        start local 1 // byte[] array
         1: .line 428
            aload 0 /* s */
            aload 1 /* array */
            iconst_0
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.toCheckedByteArray:(Ljava/lang/CharSequence;[BI)[B
            areturn
        end local 1 // byte[] array
        end local 0 // java.lang.CharSequence s
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0      s  Ljava/lang/CharSequence;
            1    2     1  array  [B
    MethodParameters:
      Name  Flags
      s     final

  public static byte[] toCheckedByteArray(java.lang.CharSequence, byte[], int);
    descriptor: (Ljava/lang/CharSequence;[BI)[B
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // java.lang.CharSequence s
        start local 1 // byte[] dstArray
        start local 2 // int arrayOffs
         0: .line 443
            aload 1 /* dstArray */
            ifnonnull 2
         1: .line 444
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 447
      StackMap locals:
      StackMap stack:
            aload 0 /* s */
            invokeinterface java.lang.CharSequence.length:()I
            istore 3 /* strLen */
        start local 3 // int strLen
         3: .line 449
            iload 2 /* arrayOffs */
            iload 3 /* strLen */
            iadd
            aload 1 /* dstArray */
            arraylength
            if_icmple 5
         4: .line 450
            new java.lang.IllegalArgumentException
            dup
            ldc "Not enough space in the array"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 453
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 12
         7: .line 454
      StackMap locals: int
      StackMap stack:
            aload 0 /* s */
            iload 4 /* i */
            invokeinterface java.lang.CharSequence.charAt:(I)C
            istore 5 /* c */
        start local 5 // int c
         8: .line 455
            aload 1 /* dstArray */
            iload 4 /* i */
            iload 2 /* arrayOffs */
            iadd
            iload 5 /* c */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isNonPrintableUsAscii:(I)Z
            ifeq 9
            bipush 32
            goto 10
      StackMap locals: java.lang.CharSequence byte[] int int int int
      StackMap stack: byte[] int
         9: iload 5 /* c */
            i2b
      StackMap locals: java.lang.CharSequence byte[] int int int int
      StackMap stack: byte[] int int
        10: bastore
        end local 5 // int c
        11: .line 453
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            iload 3 /* strLen */
            if_icmplt 7
        end local 4 // int i
        13: .line 458
            aload 1 /* dstArray */
            areturn
        end local 3 // int strLen
        end local 2 // int arrayOffs
        end local 1 // byte[] dstArray
        end local 0 // java.lang.CharSequence s
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0          s  Ljava/lang/CharSequence;
            0   14     1   dstArray  [B
            0   14     2  arrayOffs  I
            3   14     3     strLen  I
            6   13     4          i  I
            8   11     5          c  I
    MethodParameters:
           Name  Flags
      s          final
      dstArray   final
      arrayOffs  final

  public static boolean isNonPrintableUsAscii(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int ub
         0: .line 470
            iload 0 /* ub */
            bipush 31
            if_icmpgt 1
            iload 0 /* ub */
            bipush 9
            if_icmpne 2
      StackMap locals:
      StackMap stack:
         1: iload 0 /* ub */
            bipush 127
            if_icmpge 2
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 0 // int ub
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    ub  I
    MethodParameters:
      Name  Flags
      ub    final

  private static void fastAsciiEncode(java.lang.String, byte[], org.glassfish.grizzly.Buffer);
    descriptor: (Ljava/lang/String;[BLorg/glassfish/grizzly/Buffer;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // java.lang.String s
        start local 1 // byte[] tempBuffer
        start local 2 // org.glassfish.grizzly.Buffer dstBuffer
         0: .line 474
            aload 0 /* s */
            invokevirtual java.lang.String.length:()I
            istore 3 /* totalLen */
        start local 3 // int totalLen
         1: .line 475
            aload 1 /* tempBuffer */
            ifnonnull 3
         2: .line 476
            iload 3 /* totalLen */
            newarray 8
            astore 1 /* tempBuffer */
         3: .line 478
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 4 /* count */
        start local 4 // int count
         4: .line 479
            goto 16
         5: .line 480
      StackMap locals: int
      StackMap stack:
            iload 3 /* totalLen */
            iload 4 /* count */
            isub
            aload 1 /* tempBuffer */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* len */
        start local 5 // int len
         6: .line 481
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         7: goto 14
         8: .line 482
      StackMap locals: int int
      StackMap stack:
            aload 0 /* s */
            iload 4 /* count */
            invokevirtual java.lang.String.charAt:(I)C
            istore 7 /* c */
        start local 7 // int c
         9: .line 483
            aload 1 /* tempBuffer */
            iload 6 /* i */
            iload 7 /* c */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isNonPrintableUsAscii:(I)Z
            ifeq 10
            bipush 32
            goto 11
      StackMap locals: java.lang.String byte[] org.glassfish.grizzly.Buffer int int int int int
      StackMap stack: byte[] int
        10: iload 7 /* c */
            i2b
      StackMap locals: java.lang.String byte[] org.glassfish.grizzly.Buffer int int int int int
      StackMap stack: byte[] int int
        11: bastore
        12: .line 484
            iinc 4 /* count */ 1
        end local 7 // int c
        13: .line 481
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 6 /* i */
            iload 5 /* len */
            if_icmplt 8
        end local 6 // int i
        15: .line 486
            aload 2 /* dstBuffer */
            aload 1 /* tempBuffer */
            iconst_0
            iload 5 /* len */
            invokeinterface org.glassfish.grizzly.Buffer.put:([BII)Lorg/glassfish/grizzly/Buffer;
            pop
        end local 5 // int len
        16: .line 479
      StackMap locals:
      StackMap stack:
            iload 4 /* count */
            iload 3 /* totalLen */
            if_icmplt 5
        17: .line 488
            return
        end local 4 // int count
        end local 3 // int totalLen
        end local 2 // org.glassfish.grizzly.Buffer dstBuffer
        end local 1 // byte[] tempBuffer
        end local 0 // java.lang.String s
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0           s  Ljava/lang/String;
            0   18     1  tempBuffer  [B
            0   18     2   dstBuffer  Lorg/glassfish/grizzly/Buffer;
            1   18     3    totalLen  I
            4   18     4       count  I
            6   16     5         len  I
            7   15     6           i  I
            9   13     7           c  I
    MethodParameters:
            Name  Flags
      s           final
      tempBuffer  
      dstBuffer   final

  private static int checkCRLF(org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState, byte, byte);
    descriptor: (Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;BB)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState parsingState
        start local 1 // byte b1
        start local 2 // byte b2
         0: .line 491
            iload 1 /* b1 */
            bipush 13
            if_icmpne 6
         1: .line 492
            iload 2 /* b2 */
            bipush 10
            if_icmpne 4
         2: .line 493
            aload 0 /* parsingState */
            dup
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
            iconst_2
            iadd
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
         3: .line 494
            iconst_0
            ireturn
         4: .line 495
      StackMap locals:
      StackMap stack:
            iload 2 /* b2 */
            iconst_m1
            if_icmpne 9
         5: .line 496
            bipush -2
            ireturn
         6: .line 498
      StackMap locals:
      StackMap stack:
            iload 1 /* b1 */
            bipush 10
            if_icmpne 9
         7: .line 499
            aload 0 /* parsingState */
            dup
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
            iconst_1
            iadd
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
         8: .line 500
            iconst_0
            ireturn
         9: .line 503
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // byte b2
        end local 1 // byte b1
        end local 0 // org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState parsingState
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0  parsingState  Lorg/glassfish/grizzly/http/HttpCodecFilter$HeaderParsingState;
            0   10     1            b1  B
            0   10     2            b2  B
    MethodParameters:
              Name  Flags
      parsingState  
      b1            
      b2            

  private static org.glassfish.grizzly.Buffer checkAndResizeIfNeeded(org.glassfish.grizzly.memory.MemoryManager, org.glassfish.grizzly.Buffer, int);
    descriptor: (Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
        start local 1 // org.glassfish.grizzly.Buffer dstBuffer
        start local 2 // int length
         0: .line 507
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            iload 2 /* length */
            if_icmpge 2
         1: .line 508
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            iload 2 /* length */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.resizeBuffer:(Lorg/glassfish/grizzly/memory/MemoryManager;Lorg/glassfish/grizzly/Buffer;I)Lorg/glassfish/grizzly/Buffer;
            astore 1 /* dstBuffer */
         2: .line 510
      StackMap locals:
      StackMap stack:
            aload 1 /* dstBuffer */
            areturn
        end local 2 // int length
        end local 1 // org.glassfish.grizzly.Buffer dstBuffer
        end local 0 // org.glassfish.grizzly.memory.MemoryManager memoryManager
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    3     1      dstBuffer  Lorg/glassfish/grizzly/Buffer;
            0    3     2         length  I
    MethodParameters:
               Name  Flags
      memoryManager  
      dstBuffer      
      length         
}
SourceFile: "HttpCodecUtils.java"
InnerClasses:
  public final HeaderParsingState = org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState of org.glassfish.grizzly.http.HttpCodecFilter
  public final Type = org.glassfish.grizzly.http.util.DataChunk$Type of org.glassfish.grizzly.http.util.DataChunk