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 33
            iconst_0
            newarray 8
            putstatic org.glassfish.grizzly.http.util.HttpCodecUtils.EMPTY_ARRAY:[B
         1: .line 34
            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 32
            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 40
            aload 0 /* hostDC */
            ifnonnull 7
         1: .line 44
            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 45
            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 46
            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 49
            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 50
            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 51
            return
        end local 4 // java.net.InetAddress localAddress
        end local 3 // org.glassfish.grizzly.Connection connection
         7: .line 54
      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_acmpne 54
         8: .line 55
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.getByteChunk:()Lorg/glassfish/grizzly/http/util/ByteChunk;
            astore 3 /* valueBC */
        start local 3 // org.glassfish.grizzly.http.util.ByteChunk valueBC
         9: .line 56
            aload 3 /* valueBC */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getStart:()I
            istore 4 /* valueS */
        start local 4 // int valueS
        10: .line 57
            aload 3 /* valueBC */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getEnd:()I
            iload 4 /* valueS */
            isub
            istore 5 /* valueL */
        start local 5 // int valueL
        11: .line 58
            iconst_m1
            istore 6 /* colonPos */
        start local 6 // int colonPos
        12: .line 60
            aload 3 /* valueBC */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getBuffer:()[B
            astore 7 /* valueB */
        start local 7 // byte[] valueB
        13: .line 61
            aload 7 /* valueB */
            iload 4 /* valueS */
            baload
            bipush 91
            if_icmpne 14
            iconst_1
            goto 15
      StackMap locals: org.glassfish.grizzly.http.util.DataChunk org.glassfish.grizzly.http.util.DataChunk org.glassfish.grizzly.http.HttpRequestPacket org.glassfish.grizzly.http.util.ByteChunk int int int byte[]
      StackMap stack:
        14: iconst_0
      StackMap locals:
      StackMap stack: int
        15: istore 8 /* ipv6 */
        start local 8 // boolean ipv6
        16: .line 62
            iconst_0
            istore 9 /* bracketClosed */
        start local 9 // boolean bracketClosed
        17: .line 63
            iconst_0
            istore 10 /* i */
        start local 10 // int i
        18: goto 28
        19: .line 64
      StackMap locals: int int int
      StackMap stack:
            aload 7 /* valueB */
            iload 10 /* i */
            iload 4 /* valueS */
            iadd
            baload
            istore 11 /* b */
        start local 11 // byte b
        20: .line 65
            iload 11 /* b */
            bipush 93
            if_icmpne 23
        21: .line 66
            iconst_1
            istore 9 /* bracketClosed */
        22: .line 67
            goto 27
      StackMap locals: int
      StackMap stack:
        23: iload 11 /* b */
            bipush 58
            if_icmpne 27
        24: .line 68
            iload 8 /* ipv6 */
            ifeq 25
            iload 9 /* bracketClosed */
            ifeq 27
        25: .line 69
      StackMap locals:
      StackMap stack:
            iload 10 /* i */
            istore 6 /* colonPos */
        26: .line 70
            goto 29
        end local 11 // byte b
        27: .line 63
      StackMap locals:
      StackMap stack:
            iinc 10 /* i */ 1
      StackMap locals:
      StackMap stack:
        28: iload 10 /* i */
            iload 5 /* valueL */
            if_icmplt 19
        end local 10 // int i
        29: .line 75
      StackMap locals:
      StackMap stack:
            iload 6 /* colonPos */
            ifge 36
        30: .line 76
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.isSecure:()Z
            ifne 33
        31: .line 78
            aload 2 /* request */
            bipush 80
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        32: .line 79
            goto 34
        33: .line 81
      StackMap locals:
      StackMap stack:
            aload 2 /* request */
            sipush 443
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        34: .line 84
      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.setBytes:([BII)V
        35: .line 85
            goto 99
        36: .line 86
      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.setBytes:([BII)V
        37: .line 88
            iconst_0
            istore 10 /* port */
        start local 10 // int port
        38: .line 89
            iconst_1
            istore 11 /* mult */
        start local 11 // int mult
        39: .line 90
            iload 5 /* valueL */
            iconst_1
            isub
            istore 12 /* i */
        start local 12 // int i
        40: goto 51
        41: .line 91
      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
            baload
            iaload
            istore 13 /* charValue */
        start local 13 // int charValue
        42: .line 92
            iload 13 /* charValue */
            iconst_m1
            if_icmpne 48
        43: .line 93
            new java.lang.IllegalStateException
            dup
        44: .line 94
            ldc "Host header %s contained a non-decimal value in the port definition."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        45: .line 95
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.toString:()Ljava/lang/String;
            aastore
        46: .line 94
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
        47: .line 93
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        48: .line 97
      StackMap locals: int
      StackMap stack:
            iload 10 /* port */
            iload 13 /* charValue */
            iload 11 /* mult */
            imul
            iadd
            istore 10 /* port */
        49: .line 98
            iload 11 /* mult */
            bipush 10
            imul
            istore 11 /* mult */
        end local 13 // int charValue
        50: .line 90
            iinc 12 /* i */ -1
      StackMap locals:
      StackMap stack:
        51: iload 12 /* i */
            iload 6 /* colonPos */
            if_icmpgt 41
        end local 12 // int i
        52: .line 100
            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 // byte[] valueB
        end local 6 // int colonPos
        end local 5 // int valueL
        end local 4 // int valueS
        end local 3 // org.glassfish.grizzly.http.util.ByteChunk valueBC
        53: .line 103
            goto 99
        54: .line 104
      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
        55: .line 105
            aload 3 /* valueBC */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getStart:()I
            istore 4 /* valueS */
        start local 4 // int valueS
        56: .line 106
            aload 3 /* valueBC */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getEnd:()I
            iload 4 /* valueS */
            isub
            istore 5 /* valueL */
        start local 5 // int valueL
        57: .line 107
            iconst_m1
            istore 6 /* colonPos */
        start local 6 // int colonPos
        58: .line 109
            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
        59: .line 110
            aload 7 /* valueB */
            iload 4 /* valueS */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            bipush 91
            if_icmpne 60
            iconst_1
            goto 61
      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:
        60: iconst_0
      StackMap locals:
      StackMap stack: int
        61: istore 8 /* ipv6 */
        start local 8 // boolean ipv6
        62: .line 111
            iconst_0
            istore 9 /* bracketClosed */
        start local 9 // boolean bracketClosed
        63: .line 112
            iconst_0
            istore 10 /* i */
        start local 10 // int i
        64: goto 74
        65: .line 113
      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
        66: .line 114
            iload 11 /* b */
            bipush 93
            if_icmpne 69
        67: .line 115
            iconst_1
            istore 9 /* bracketClosed */
        68: .line 116
            goto 73
      StackMap locals: int
      StackMap stack:
        69: iload 11 /* b */
            bipush 58
            if_icmpne 73
        70: .line 117
            iload 8 /* ipv6 */
            ifeq 71
            iload 9 /* bracketClosed */
            ifeq 73
        71: .line 118
      StackMap locals:
      StackMap stack:
            iload 10 /* i */
            istore 6 /* colonPos */
        72: .line 119
            goto 75
        end local 11 // byte b
        73: .line 112
      StackMap locals:
      StackMap stack:
            iinc 10 /* i */ 1
      StackMap locals:
      StackMap stack:
        74: iload 10 /* i */
            iload 5 /* valueL */
            if_icmplt 65
        end local 10 // int i
        75: .line 124
      StackMap locals:
      StackMap stack:
            iload 6 /* colonPos */
            ifge 82
        76: .line 125
            aload 2 /* request */
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.isSecure:()Z
            ifne 79
        77: .line 127
            aload 2 /* request */
            bipush 80
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        78: .line 128
            goto 80
        79: .line 130
      StackMap locals:
      StackMap stack:
            aload 2 /* request */
            sipush 443
            invokevirtual org.glassfish.grizzly.http.HttpRequestPacket.setServerPort:(I)V
        80: .line 132
      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
        81: .line 133
            goto 99
        82: .line 134
      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
        83: .line 136
            iconst_0
            istore 10 /* port */
        start local 10 // int port
        84: .line 137
            iconst_1
            istore 11 /* mult */
        start local 11 // int mult
        85: .line 138
            iload 5 /* valueL */
            iconst_1
            isub
            istore 12 /* i */
        start local 12 // int i
        86: goto 97
        87: .line 139
      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
        88: .line 140
            iload 13 /* charValue */
            iconst_m1
            if_icmpne 94
        89: .line 142
            new java.lang.IllegalStateException
            dup
        90: .line 143
            ldc "Host header %s contained a non-decimal value in the port definition."
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
        91: .line 144
            aload 0 /* hostDC */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.toString:()Ljava/lang/String;
            aastore
        92: .line 143
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
        93: .line 142
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        94: .line 146
      StackMap locals: int
      StackMap stack:
            iload 10 /* port */
            iload 13 /* charValue */
            iload 11 /* mult */
            imul
            iadd
            istore 10 /* port */
        95: .line 147
            iload 11 /* mult */
            bipush 10
            imul
            istore 11 /* mult */
        end local 13 // int charValue
        96: .line 138
            iinc 12 /* i */ -1
      StackMap locals:
      StackMap stack:
        97: iload 12 /* i */
            iload 6 /* colonPos */
            if_icmpgt 87
        end local 12 // int i
        98: .line 149
            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
        99: .line 153
      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  100     0         hostDC  Lorg/glassfish/grizzly/http/util/DataChunk;
            0  100     1   serverNameDC  Lorg/glassfish/grizzly/http/util/DataChunk;
            0  100     2        request  Lorg/glassfish/grizzly/http/HttpRequestPacket;
            2    7     3     connection  Lorg/glassfish/grizzly/Connection;
            4    7     4   localAddress  Ljava/net/InetAddress;
            9   53     3        valueBC  Lorg/glassfish/grizzly/http/util/ByteChunk;
           10   53     4         valueS  I
           11   53     5         valueL  I
           12   53     6       colonPos  I
           13   53     7         valueB  [B
           16   53     8           ipv6  Z
           17   53     9  bracketClosed  Z
           18   29    10              i  I
           20   27    11              b  B
           38   53    10           port  I
           39   53    11           mult  I
           40   52    12              i  I
           42   50    13      charValue  I
           55   99     3        valueBC  Lorg/glassfish/grizzly/http/util/BufferChunk;
           56   99     4         valueS  I
           57   99     5         valueL  I
           58   99     6       colonPos  I
           59   99     7         valueB  Lorg/glassfish/grizzly/Buffer;
           62   99     8           ipv6  Z
           63   99     9  bracketClosed  Z
           64   75    10              i  I
           66   73    11              b  B
           84   99    10           port  I
           85   99    11           mult  I
           86   98    12              i  I
           88   96    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 156
            aload 0 /* parsingState */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
            istore 2 /* offset */
        start local 2 // int offset
         1: .line 157
            aload 1 /* input */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            iload 2 /* offset */
            isub
            istore 3 /* avail */
        start local 3 // int avail
         2: .line 162
            iload 3 /* avail */
            iconst_2
            if_icmplt 7
         3: .line 163
            aload 1 /* input */
            iload 2 /* offset */
            invokeinterface org.glassfish.grizzly.Buffer.getShort:(I)S
            istore 6 /* s */
        start local 6 // short s
         4: .line 164
            iload 6 /* s */
            bipush 8
            iushr
            i2b
            istore 4 /* b1 */
        start local 4 // byte b1
         5: .line 165
            iload 6 /* s */
            sipush 255
            iand
            i2b
            istore 5 /* b2 */
        end local 6 // short s
        start local 5 // byte b2
         6: .line 166
            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 167
            aload 1 /* input */
            iload 2 /* offset */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 4 /* b1 */
        start local 4 // byte b1
         9: .line 168
            iconst_m1
            istore 5 /* b2 */
        start local 5 // byte b2
        10: .line 169
            goto 12
        end local 5 // byte b2
        end local 4 // byte b1
        11: .line 170
      StackMap locals:
      StackMap stack:
            bipush -2
            ireturn
        start local 4 // byte b1
        start local 5 // byte b2
        12: .line 173
      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 179
            aload 0 /* parsingState */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.arrayOffset:I
            istore 3 /* arrayOffs */
        start local 3 // int arrayOffs
         1: .line 180
            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 181
            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 186
            iload 5 /* avail */
            iconst_2
            if_icmplt 7
         4: .line 187
            aload 1 /* input */
            iload 4 /* offset */
            baload
            istore 6 /* b1 */
        start local 6 // byte b1
         5: .line 188
            aload 1 /* input */
            iload 4 /* offset */
            iconst_1
            iadd
            baload
            istore 7 /* b2 */
        start local 7 // byte b2
         6: .line 189
            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 190
            aload 1 /* input */
            iload 4 /* offset */
            baload
            istore 6 /* b1 */
        start local 6 // byte b1
         9: .line 191
            iconst_m1
            istore 7 /* b2 */
        start local 7 // byte b2
        10: .line 192
            goto 12
        end local 7 // byte b2
        end local 6 // byte b1
        11: .line 193
      StackMap locals:
      StackMap stack:
            bipush -2
            ireturn
        start local 6 // byte b1
        start local 7 // byte b2
        12: .line 196
      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 200
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
            istore 2 /* offset */
        start local 2 // int offset
         1: .line 201
            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 203
            goto 13
         3: .line 204
      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 205
            iload 4 /* b */
            bipush 13
            if_icmpne 7
         5: .line 206
            aload 0 /* state */
            iload 2 /* offset */
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
         6: .line 207
            goto 12
      StackMap locals: int
      StackMap stack:
         7: iload 4 /* b */
            bipush 10
            if_icmpne 12
         8: .line 208
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
            iconst_m1
            if_icmpne 10
         9: .line 209
            aload 0 /* state */
            iload 2 /* offset */
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
        10: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* state */
            iload 2 /* offset */
            iconst_1
            iadd
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
        11: .line 213
            iconst_1
            ireturn
        12: .line 216
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 1
        end local 4 // byte b
        13: .line 203
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* limit */
            if_icmplt 3
        14: .line 219
            aload 0 /* state */
            iload 2 /* offset */
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
        15: .line 221
            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 226
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.arrayOffset:I
            istore 3 /* arrayOffs */
        start local 3 // int arrayOffs
         1: .line 227
            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 229
            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 231
            goto 14
         4: .line 232
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* input */
            iload 4 /* offset */
            baload
            istore 6 /* b */
        start local 6 // byte b
         5: .line 233
            iload 6 /* b */
            bipush 13
            if_icmpne 8
         6: .line 234
            aload 0 /* state */
            iload 4 /* offset */
            iload 3 /* arrayOffs */
            isub
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
         7: .line 235
            goto 13
      StackMap locals: int
      StackMap stack:
         8: iload 6 /* b */
            bipush 10
            if_icmpne 13
         9: .line 236
            aload 0 /* state */
            getfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
            iconst_m1
            if_icmpne 11
        10: .line 237
            aload 0 /* state */
            iload 4 /* offset */
            iload 3 /* arrayOffs */
            isub
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.checkpoint:I
        11: .line 240
      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 241
            iconst_1
            ireturn
        13: .line 244
      StackMap locals:
      StackMap stack:
            iinc 4 /* offset */ 1
        end local 6 // byte b
        14: .line 231
      StackMap locals:
      StackMap stack:
            iload 4 /* offset */
            iload 5 /* limit */
            if_icmplt 4
        15: .line 247
            aload 0 /* state */
            iload 4 /* offset */
            iload 3 /* arrayOffs */
            isub
            putfield org.glassfish.grizzly.http.HttpCodecFilter$HeaderParsingState.offset:I
        16: .line 249
            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 254
            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 255
            goto 6
         2: .line 256
      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 257
            iload 4 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isSpaceOrTab:(B)Z
            ifeq 5
         4: .line 258
            iload 1 /* offset */
            ireturn
         5: .line 261
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 4 // byte b
         6: .line 255
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 3 /* limit */
            if_icmplt 2
         7: .line 264
            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 269
            iload 2 /* end */
            iload 3 /* packetLimit */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* limit */
        start local 4 // int limit
         1: .line 270
            goto 6
         2: .line 271
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            iload 1 /* offset */
            baload
            istore 5 /* b */
        start local 5 // byte b
         3: .line 272
            iload 5 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isSpaceOrTab:(B)Z
            ifeq 5
         4: .line 273
            iload 1 /* offset */
            ireturn
         5: .line 276
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 5 // byte b
         6: .line 270
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 4 /* limit */
            if_icmplt 2
         7: .line 279
            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 284
            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 285
            goto 6
         2: .line 286
      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 287
            iload 4 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isNotSpaceAndTab:(B)Z
            ifeq 5
         4: .line 288
            iload 1 /* offset */
            ireturn
         5: .line 291
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 4 // byte b
         6: .line 285
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 3 /* limit */
            if_icmplt 2
         7: .line 294
            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 299
            iload 2 /* end */
            iload 3 /* packetLimit */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* limit */
        start local 4 // int limit
         1: .line 300
            goto 6
         2: .line 301
      StackMap locals: int
      StackMap stack:
            aload 0 /* input */
            iload 1 /* offset */
            baload
            istore 5 /* b */
        start local 5 // byte b
         3: .line 302
            iload 5 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isNotSpaceAndTab:(B)Z
            ifeq 5
         4: .line 303
            iload 1 /* offset */
            ireturn
         5: .line 306
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 5 // byte b
         6: .line 300
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 4 /* limit */
            if_icmplt 2
         7: .line 309
            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 314
            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 315
            goto 6
         2: .line 316
      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 317
            iload 5 /* currentByte */
            iload 2 /* b */
            if_icmpne 5
         4: .line 318
            iload 1 /* offset */
            ireturn
         5: .line 321
      StackMap locals: int
      StackMap stack:
            iinc 1 /* offset */ 1
        end local 5 // byte currentByte
         6: .line 315
      StackMap locals:
      StackMap stack:
            iload 1 /* offset */
            iload 4 /* limit */
            if_icmplt 2
         7: .line 324
            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 329
            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 330
            aload 3 /* b */
            iconst_1
            invokeinterface org.glassfish.grizzly.Buffer.allowBufferDispose:(Z)V
         2: .line 331
            lload 1 /* length */
            aload 3 /* b */
            invokestatic org.glassfish.grizzly.http.util.HttpUtils.longToBuffer:(JLorg/glassfish/grizzly/Buffer;)V
         3: .line 332
            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 340
            aload 3 /* chunk */
            invokevirtual org.glassfish.grizzly.http.util.DataChunk.isNull:()Z
            ifeq 1
            aload 1 /* dstBuffer */
            areturn
         1: .line 342
      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 6
         2: .line 343
            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
         3: .line 344
            aload 0 /* memoryManager */
            aload 1 /* dstBuffer */
            aload 4 /* byteChunk */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getBuffer:()[B
         4: .line 345
            aload 4 /* byteChunk */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getStart:()I
            aload 4 /* byteChunk */
            invokevirtual org.glassfish.grizzly.http.util.ByteChunk.getLength:()I
         5: .line 344
            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
         6: .line 346
      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 12
         7: .line 347
            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
         8: .line 348
            aload 4 /* bc */
            invokevirtual org.glassfish.grizzly.http.util.BufferChunk.getLength:()I
            istore 5 /* length */
        start local 5 // int length
         9: .line 349
            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 */
        10: .line 351
            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
        11: .line 353
            aload 1 /* dstBuffer */
            areturn
        end local 5 // int length
        end local 4 // org.glassfish.grizzly.http.util.BufferChunk bc
        12: .line 355
      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   13     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0   13     1      dstBuffer  Lorg/glassfish/grizzly/Buffer;
            0   13     2     tempBuffer  [B
            0   13     3          chunk  Lorg/glassfish/grizzly/http/util/DataChunk;
            3    6     4      byteChunk  Lorg/glassfish/grizzly/http/util/ByteChunk;
            8   12     4             bc  Lorg/glassfish/grizzly/http/util/BufferChunk;
            9   12     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 364
            aload 3 /* s */
            invokevirtual java.lang.String.length:()I
            istore 4 /* size */
        start local 4 // int size
         1: .line 365
            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 367
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.hasArray:()Z
            ifeq 16
         3: .line 369
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.array:()[B
            astore 5 /* array */
        start local 5 // byte[] array
         4: .line 370
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.arrayOffset:()I
            istore 6 /* arrayOffs */
        start local 6 // int arrayOffs
         5: .line 371
            iload 6 /* arrayOffs */
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.position:()I
            iadd
            istore 7 /* pos */
        start local 7 // int pos
         6: .line 374
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         7: goto 13
         8: .line 375
      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 376
            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 374
            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 379
            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 380
            goto 17
        16: .line 381
      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 384
      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 389
            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 395
            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 397
            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 399
            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 405
            aload 2 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            istore 3 /* addSize */
        start local 3 // int addSize
         1: .line 407
            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 409
            aload 1 /* dstBuffer */
            aload 2 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.put:(Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/Buffer;
            pop
         3: .line 411
            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 417
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.hasRemaining:()Z
            ifne 2
         1: .line 418
            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 421
      StackMap locals:
      StackMap stack:
            aload 1 /* dstBuffer */
            iload 2 /* value */
            invokeinterface org.glassfish.grizzly.Buffer.put:(B)Lorg/glassfish/grizzly/Buffer;
            pop
         3: .line 423
            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 430
            aload 0 /* memoryManager */
            aload 1 /* buffer */
         1: .line 431
            aload 1 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.capacity:()I
            iload 2 /* grow */
            iadd
         2: .line 432
            aload 1 /* buffer */
            invokeinterface org.glassfish.grizzly.Buffer.capacity:()I
            iconst_3
            imul
            iconst_2
            idiv
            iconst_1
            iadd
         3: .line 430
            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    4     0  memoryManager  Lorg/glassfish/grizzly/memory/MemoryManager;
            0    4     1         buffer  Lorg/glassfish/grizzly/Buffer;
            0    4     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 437
            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 441
            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 453
            aload 0 /* s */
            invokeinterface java.lang.CharSequence.length:()I
            newarray 8
            astore 1 /* array */
        start local 1 // byte[] array
         1: .line 454
            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 473
            aload 1 /* dstArray */
            ifnonnull 2
         1: .line 474
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 477
      StackMap locals:
      StackMap stack:
            aload 0 /* s */
            invokeinterface java.lang.CharSequence.length:()I
            istore 3 /* strLen */
        start local 3 // int strLen
         3: .line 479
            iload 2 /* arrayOffs */
            iload 3 /* strLen */
            iadd
            aload 1 /* dstArray */
            arraylength
            if_icmple 5
         4: .line 480
            new java.lang.IllegalArgumentException
            dup
            ldc "Not enough space in the array"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 483
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 13
         7: .line 484
      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 485
            aload 1 /* dstArray */
            iload 4 /* i */
            iload 2 /* arrayOffs */
            iadd
            iload 5 /* c */
            invokestatic org.glassfish.grizzly.http.util.HttpCodecUtils.isNonPrintableUsAscii:(I)Z
            ifeq 10
         9: .line 486
            bipush 32
            goto 11
      StackMap locals: java.lang.CharSequence byte[] int int int int
      StackMap stack: byte[] int
        10: iload 5 /* c */
            i2b
        11: .line 485
      StackMap locals: java.lang.CharSequence byte[] int int int int
      StackMap stack: byte[] int int
            bastore
        end local 5 // int c
        12: .line 483
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            iload 3 /* strLen */
            if_icmplt 7
        end local 4 // int i
        14: .line 489
            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   15     0          s  Ljava/lang/CharSequence;
            0   15     1   dstArray  [B
            0   15     2  arrayOffs  I
            3   15     3     strLen  I
            6   14     4          i  I
            8   12     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 501
            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 507
            aload 0 /* s */
            invokevirtual java.lang.String.length:()I
            istore 3 /* totalLen */
        start local 3 // int totalLen
         1: .line 508
            aload 1 /* tempBuffer */
            ifnonnull 3
         2: .line 509
            iload 3 /* totalLen */
            newarray 8
            astore 1 /* tempBuffer */
         3: .line 511
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 4 /* count */
        start local 4 // int count
         4: .line 512
            goto 16
         5: .line 513
      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 514
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         7: goto 14
         8: .line 515
      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 516
            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 517
            iinc 4 /* count */ 1
        end local 7 // int c
        13: .line 514
            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 519
            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 512
      StackMap locals:
      StackMap stack:
            iload 4 /* count */
            iload 3 /* totalLen */
            if_icmplt 5
        17: .line 521
            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 524
            iload 1 /* b1 */
            bipush 13
            if_icmpne 6
         1: .line 525
            iload 2 /* b2 */
            bipush 10
            if_icmpne 4
         2: .line 526
            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 527
            iconst_0
            ireturn
         4: .line 528
      StackMap locals:
      StackMap stack:
            iload 2 /* b2 */
            iconst_m1
            if_icmpne 9
         5: .line 529
            bipush -2
            ireturn
         6: .line 531
      StackMap locals:
      StackMap stack:
            iload 1 /* b1 */
            bipush 10
            if_icmpne 9
         7: .line 532
            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 533
            iconst_0
            ireturn
         9: .line 536
      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 540
            aload 1 /* dstBuffer */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            iload 2 /* length */
            if_icmpge 2
         1: .line 541
            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 543
      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