public class org.glassfish.grizzly.memory.HeapBuffer implements org.glassfish.grizzly.Buffer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.memory.HeapBuffer
  super_class: java.lang.Object
{
  public static volatile boolean DEBUG_MODE;
    descriptor: Z
    flags: (0x0049) ACC_PUBLIC, ACC_STATIC, ACC_VOLATILE

  protected boolean allowBufferDispose;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.Exception disposeStackTrace;
    descriptor: Ljava/lang/Exception;
    flags: (0x0004) ACC_PROTECTED

  protected byte[] heap;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected int offset;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int pos;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int cap;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int lim;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int mark;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected boolean readOnly;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected java.nio.ByteOrder order;
    descriptor: Ljava/nio/ByteOrder;
    flags: (0x0004) ACC_PROTECTED

  protected boolean bigEndian;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected java.nio.ByteBuffer byteBuffer;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0004) ACC_PROTECTED

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 44
            iconst_0
            putstatic org.glassfish.grizzly.memory.HeapBuffer.DEBUG_MODE:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.allowBufferDispose:Z
         2: .line 61
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         3: .line 65
            aload 0 /* this */
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            putfield org.glassfish.grizzly.memory.HeapBuffer.order:Ljava/nio/ByteOrder;
         4: .line 67
            aload 0 /* this */
            iconst_1
            putfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
         5: .line 74
            return
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  protected void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // byte[] heap
        start local 2 // int offset
        start local 3 // int cap
         0: .line 76
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.allowBufferDispose:Z
         2: .line 61
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         3: .line 65
            aload 0 /* this */
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            putfield org.glassfish.grizzly.memory.HeapBuffer.order:Ljava/nio/ByteOrder;
         4: .line 67
            aload 0 /* this */
            iconst_1
            putfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
         5: .line 77
            aload 0 /* this */
            aload 1 /* heap */
            putfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
         6: .line 78
            aload 0 /* this */
            iload 2 /* offset */
            putfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
         7: .line 79
            aload 0 /* this */
            iload 3 /* cap */
            putfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
         8: .line 80
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
         9: .line 81
            return
        end local 3 // int cap
        end local 2 // int offset
        end local 1 // byte[] heap
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0   10     1    heap  [B
            0   10     2  offset  I
            0   10     3     cap  I
    MethodParameters:
        Name  Flags
      heap    final
      offset  final
      cap     final

  public final boolean isComposite();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 85
            iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public org.glassfish.grizzly.memory.HeapBuffer prepend(org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // org.glassfish.grizzly.Buffer header
         0: .line 90
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 91
            aload 0 /* this */
            areturn
        end local 1 // org.glassfish.grizzly.Buffer header
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    2     1  header  Lorg/glassfish/grizzly/Buffer;
    MethodParameters:
        Name  Flags
      header  final

  public void trim();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 96
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 97
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.flip:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            pop
         2: .line 98
            return
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public void shrink();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 102
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 103
            return
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final boolean allowBufferDispose();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 107
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.allowBufferDispose:Z
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final void allowBufferDispose(boolean);
    descriptor: (Z)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // boolean allowBufferDispose
         0: .line 112
            aload 0 /* this */
            iload 1 /* allowBufferDispose */
            putfield org.glassfish.grizzly.memory.HeapBuffer.allowBufferDispose:Z
         1: .line 113
            return
        end local 1 // boolean allowBufferDispose
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    2     1  allowBufferDispose  Z
    MethodParameters:
                    Name  Flags
      allowBufferDispose  

  public final boolean tryDispose();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 117
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.allowBufferDispose:Z
            ifeq 3
         1: .line 118
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.dispose:()V
         2: .line 119
            iconst_1
            ireturn
         3: .line 122
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 127
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.prepareDispose:()V
         1: .line 129
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
         2: .line 130
            aload 0 /* this */
            aconst_null
            putfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
         3: .line 131
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 132
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
         5: .line 133
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
         6: .line 134
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
         7: .line 135
            aload 0 /* this */
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            putfield org.glassfish.grizzly.memory.HeapBuffer.order:Ljava/nio/ByteOrder;
         8: .line 136
            aload 0 /* this */
            iconst_1
            putfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
         9: .line 137
            return
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  protected final void prepareDispose();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 140
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 141
            getstatic org.glassfish.grizzly.memory.HeapBuffer.DEBUG_MODE:Z
            ifeq 3
         2: .line 143
            aload 0 /* this */
            invokestatic org.glassfish.grizzly.memory.HeapBuffer$DebugLogic.doDebug:(Lorg/glassfish/grizzly/memory/HeapBuffer;)V
         3: .line 145
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public java.nio.ByteBuffer underlying();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 149
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 150
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toByteBuffer:()Ljava/nio/ByteBuffer;
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final int capacity();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 155
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 156
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final int position();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 161
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 162
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final org.glassfish.grizzly.memory.HeapBuffer position(int);
    descriptor: (I)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int newPosition
         0: .line 167
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 168
            aload 0 /* this */
            iload 1 /* newPosition */
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         2: .line 169
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            if_icmple 4
         3: .line 170
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         4: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int newPosition
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1  newPosition  I
    MethodParameters:
             Name  Flags
      newPosition  final

  public final int limit();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 177
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 178
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final org.glassfish.grizzly.memory.HeapBuffer limit(int);
    descriptor: (I)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int newLimit
         0: .line 183
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 184
            aload 0 /* this */
            iload 1 /* newLimit */
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
         2: .line 185
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            if_icmple 4
         3: .line 186
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         4: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int newLimit
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1  newLimit  I
    MethodParameters:
          Name  Flags
      newLimit  final

  public final org.glassfish.grizzly.memory.HeapBuffer mark();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 193
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         1: .line 194
            aload 0 /* this */
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final org.glassfish.grizzly.memory.HeapBuffer reset();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 199
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
            istore 1 /* m */
        start local 1 // int m
         1: .line 200
            iload 1 /* m */
            ifge 3
         2: .line 201
            new java.nio.InvalidMarkException
            dup
            invokespecial java.nio.InvalidMarkException.<init>:()V
            athrow
         3: .line 203
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* m */
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 204
            aload 0 /* this */
            areturn
        end local 1 // int m
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            1    5     1     m  I

  public final org.glassfish.grizzly.memory.HeapBuffer clear();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 209
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         1: .line 210
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
         2: .line 211
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         3: .line 212
            aload 0 /* this */
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final org.glassfish.grizzly.memory.HeapBuffer flip();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 217
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
         1: .line 218
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         2: .line 219
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         3: .line 220
            aload 0 /* this */
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final org.glassfish.grizzly.memory.HeapBuffer rewind();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 225
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         1: .line 226
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         2: .line 227
            aload 0 /* this */
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final int remaining();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 232
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            isub
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final boolean hasRemaining();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 237
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 242
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.readOnly:Z
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public final boolean isDirect();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 247
            iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public org.glassfish.grizzly.Buffer split(int);
    descriptor: (I)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int splitPosition
         0: .line 255
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 257
            iload 1 /* splitPosition */
            iflt 2
            iload 1 /* splitPosition */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            if_icmple 3
         2: .line 258
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid splitPosition value, should be 0 <= splitPosition <= capacity"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 261
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
            iload 1 /* splitPosition */
            if_icmplt 5
         4: .line 262
            aload 0 /* this */
            iconst_m1
            putfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
         5: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            istore 2 /* oldPosition */
        start local 2 // int oldPosition
         6: .line 266
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            istore 3 /* oldLimit */
        start local 3 // int oldLimit
         7: .line 268
            aload 0 /* this */
            iload 1 /* splitPosition */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            iload 1 /* splitPosition */
            isub
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.createHeapBuffer:(II)Lorg/glassfish/grizzly/memory/HeapBuffer;
            astore 4 /* ret */
        start local 4 // org.glassfish.grizzly.memory.HeapBuffer ret
         8: .line 270
            aload 0 /* this */
            iload 1 /* splitPosition */
            putfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
         9: .line 272
            iload 2 /* oldPosition */
            iload 1 /* splitPosition */
            if_icmpge 12
        10: .line 273
            aload 0 /* this */
            iload 2 /* oldPosition */
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
        11: .line 274
            goto 14
        12: .line 275
      StackMap locals: int int org.glassfish.grizzly.memory.HeapBuffer
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
        13: .line 276
            aload 4 /* ret */
            iload 2 /* oldPosition */
            iload 1 /* splitPosition */
            isub
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.position:(I)Lorg/glassfish/grizzly/memory/HeapBuffer;
            pop
        14: .line 279
      StackMap locals:
      StackMap stack:
            iload 3 /* oldLimit */
            iload 1 /* splitPosition */
            if_icmpge 18
        15: .line 280
            aload 0 /* this */
            iload 3 /* oldLimit */
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
        16: .line 281
            aload 4 /* ret */
            iconst_0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.limit:(I)Lorg/glassfish/grizzly/memory/HeapBuffer;
            pop
        17: .line 282
            goto 20
        18: .line 283
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
        19: .line 284
            aload 4 /* ret */
            iload 3 /* oldLimit */
            iload 1 /* splitPosition */
            isub
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.limit:(I)Lorg/glassfish/grizzly/memory/HeapBuffer;
            pop
        20: .line 287
      StackMap locals:
      StackMap stack:
            aload 4 /* ret */
            areturn
        end local 4 // org.glassfish.grizzly.memory.HeapBuffer ret
        end local 3 // int oldLimit
        end local 2 // int oldPosition
        end local 1 // int splitPosition
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   21     0           this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0   21     1  splitPosition  I
            6   21     2    oldPosition  I
            7   21     3       oldLimit  I
            8   21     4            ret  Lorg/glassfish/grizzly/memory/HeapBuffer;
    MethodParameters:
               Name  Flags
      splitPosition  final

  public org.glassfish.grizzly.memory.HeapBuffer slice();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 292
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.slice:(II)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public org.glassfish.grizzly.memory.HeapBuffer slice(int, int);
    descriptor: (II)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int position
        start local 2 // int limit
         0: .line 297
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 298
            aload 0 /* this */
            iload 1 /* position */
            iload 2 /* limit */
            iload 1 /* position */
            isub
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.createHeapBuffer:(II)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
        end local 2 // int limit
        end local 1 // int position
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    2     1  position  I
            0    2     2     limit  I
    MethodParameters:
          Name  Flags
      position  final
      limit     final

  public org.glassfish.grizzly.memory.HeapBuffer duplicate();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 303
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 305
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.createHeapBuffer:(II)Lorg/glassfish/grizzly/memory/HeapBuffer;
            astore 1 /* duplicate */
        start local 1 // org.glassfish.grizzly.memory.HeapBuffer duplicate
         2: .line 306
            aload 1 /* duplicate */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.position:(I)Lorg/glassfish/grizzly/memory/HeapBuffer;
            pop
         3: .line 307
            aload 1 /* duplicate */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.limit:(I)Lorg/glassfish/grizzly/memory/HeapBuffer;
            pop
         4: .line 308
            aload 1 /* duplicate */
            areturn
        end local 1 // org.glassfish.grizzly.memory.HeapBuffer duplicate
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            2    5     1  duplicate  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public org.glassfish.grizzly.memory.HeapBuffer asReadOnlyBuffer();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 313
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 315
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.onShareHeap:()V
         2: .line 316
            new org.glassfish.grizzly.memory.ReadOnlyHeapBuffer
            dup
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            invokespecial org.glassfish.grizzly.memory.ReadOnlyHeapBuffer.<init>:([BII)V
            astore 1 /* b */
        start local 1 // org.glassfish.grizzly.memory.HeapBuffer b
         3: .line 317
            aload 1 /* b */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 318
            aload 1 /* b */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
         5: .line 319
            aload 1 /* b */
            areturn
        end local 1 // org.glassfish.grizzly.memory.HeapBuffer b
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            3    6     1     b  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public byte get();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 324
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.hasRemaining:()Z
            ifne 2
         1: .line 325
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            baload
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public byte get(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
         0: .line 332
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            if_icmplt 2
         1: .line 333
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            baload
            ireturn
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.glassfish.grizzly.memory.HeapBuffer put(byte);
    descriptor: (B)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // byte b
         0: .line 340
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.hasRemaining:()Z
            ifne 2
         1: .line 341
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         2: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 1 /* b */
            bastore
         3: .line 344
            aload 0 /* this */
            areturn
        end local 1 // byte b
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1     b  B
    MethodParameters:
      Name  Flags
      b     

  public org.glassfish.grizzly.memory.HeapBuffer put(int, byte);
    descriptor: (IB)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
        start local 2 // byte b
         0: .line 349
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            if_icmplt 2
         1: .line 350
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            iload 2 /* b */
            bastore
         3: .line 353
            aload 0 /* this */
            areturn
        end local 2 // byte b
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1  index  I
            0    4     2      b  B
    MethodParameters:
       Name  Flags
      index  
      b      

  public org.glassfish.grizzly.memory.HeapBuffer get(byte[]);
    descriptor: ([B)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // byte[] dst
         0: .line 358
            aload 0 /* this */
            aload 1 /* dst */
            iconst_0
            aload 1 /* dst */
            arraylength
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.get:([BII)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
        end local 1 // byte[] dst
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    1     1   dst  [B
    MethodParameters:
      Name  Flags
      dst   final

  public org.glassfish.grizzly.memory.HeapBuffer get(byte[], int, int);
    descriptor: ([BII)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // byte[] dst
        start local 2 // int offset
        start local 3 // int length
         0: .line 363
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iload 3 /* length */
            if_icmpge 2
         1: .line 364
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 366
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            aload 1 /* dst */
            iload 2 /* offset */
            iload 3 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 367
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iload 3 /* length */
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 368
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] dst
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1     dst  [B
            0    5     2  offset  I
            0    5     3  length  I
    MethodParameters:
        Name  Flags
      dst     final
      offset  final
      length  final

  public org.glassfish.grizzly.memory.HeapBuffer put(org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // org.glassfish.grizzly.Buffer src
         0: .line 373
            aload 0 /* this */
            aload 1 /* src */
            aload 1 /* src */
            invokeinterface org.glassfish.grizzly.Buffer.position:()I
            aload 1 /* src */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put:(Lorg/glassfish/grizzly/Buffer;II)Lorg/glassfish/grizzly/memory/HeapBuffer;
            pop
         1: .line 374
            aload 1 /* src */
            aload 1 /* src */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            invokeinterface org.glassfish.grizzly.Buffer.position:(I)Lorg/glassfish/grizzly/Buffer;
            pop
         2: .line 375
            aload 0 /* this */
            areturn
        end local 1 // org.glassfish.grizzly.Buffer src
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    3     1   src  Lorg/glassfish/grizzly/Buffer;
    MethodParameters:
      Name  Flags
      src   final

  public org.glassfish.grizzly.memory.HeapBuffer put(org.glassfish.grizzly.Buffer, int, int);
    descriptor: (Lorg/glassfish/grizzly/Buffer;II)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // org.glassfish.grizzly.Buffer src
        start local 2 // int position
        start local 3 // int length
         0: .line 380
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iload 3 /* length */
            if_icmpge 2
         1: .line 381
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         2: .line 384
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            invokeinterface org.glassfish.grizzly.Buffer.position:()I
            istore 4 /* oldPos */
        start local 4 // int oldPos
         3: .line 385
            aload 1 /* src */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            istore 5 /* oldLim */
        start local 5 // int oldLim
         4: .line 387
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            istore 6 /* thisPos */
        start local 6 // int thisPos
         5: .line 388
            aload 1 /* src */
            iload 2 /* position */
            iload 2 /* position */
            iload 3 /* length */
            iadd
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Lorg/glassfish/grizzly/Buffer;II)V
         6: .line 390
            aload 1 /* src */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 6 /* thisPos */
            iadd
            iload 3 /* length */
            invokeinterface org.glassfish.grizzly.Buffer.get:([BII)Lorg/glassfish/grizzly/Buffer;
            pop
         7: .line 391
            aload 1 /* src */
            iload 4 /* oldPos */
            iload 5 /* oldLim */
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Lorg/glassfish/grizzly/Buffer;II)V
         8: .line 392
            aload 0 /* this */
            iload 6 /* thisPos */
            iload 3 /* length */
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         9: .line 394
            aload 0 /* this */
            areturn
        end local 6 // int thisPos
        end local 5 // int oldLim
        end local 4 // int oldPos
        end local 3 // int length
        end local 2 // int position
        end local 1 // org.glassfish.grizzly.Buffer src
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0   10     1       src  Lorg/glassfish/grizzly/Buffer;
            0   10     2  position  I
            0   10     3    length  I
            3   10     4    oldPos  I
            4   10     5    oldLim  I
            5   10     6   thisPos  I
    MethodParameters:
          Name  Flags
      src       final
      position  final
      length    final

  public org.glassfish.grizzly.Buffer get(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.nio.ByteBuffer dst
         0: .line 399
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* length */
        start local 2 // int length
         1: .line 401
            aload 1 /* dst */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 2 /* length */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
         2: .line 402
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iload 2 /* length */
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         3: .line 404
            aload 0 /* this */
            areturn
        end local 2 // int length
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1     dst  Ljava/nio/ByteBuffer;
            1    4     2  length  I
    MethodParameters:
      Name  Flags
      dst   final

  public org.glassfish.grizzly.Buffer get(java.nio.ByteBuffer, int, int);
    descriptor: (Ljava/nio/ByteBuffer;II)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.nio.ByteBuffer dst
        start local 2 // int position
        start local 3 // int length
         0: .line 409
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 4 /* oldPos */
        start local 4 // int oldPos
         1: .line 410
            aload 1 /* dst */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 5 /* oldLim */
        start local 5 // int oldLim
         2: .line 413
            aload 1 /* dst */
            iload 2 /* position */
            iload 2 /* position */
            iload 3 /* length */
            iadd
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
         3: .line 414
            aload 1 /* dst */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 3 /* length */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
         4: .line 415
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iload 3 /* length */
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         5: .line 416
            goto 9
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer java.nio.ByteBuffer int int int int
      StackMap stack: java.lang.Throwable
         6: astore 6
         7: .line 417
            aload 1 /* dst */
            iload 4 /* oldPos */
            iload 5 /* oldLim */
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
         8: .line 418
            aload 6
            athrow
         9: .line 417
      StackMap locals:
      StackMap stack:
            aload 1 /* dst */
            iload 4 /* oldPos */
            iload 5 /* oldLim */
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
        10: .line 420
            aload 0 /* this */
            areturn
        end local 5 // int oldLim
        end local 4 // int oldPos
        end local 3 // int length
        end local 2 // int position
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0   11     1       dst  Ljava/nio/ByteBuffer;
            0   11     2  position  I
            0   11     3    length  I
            1   11     4    oldPos  I
            2   11     5    oldLim  I
      Exception table:
        from    to  target  type
           2     6       6  any
    MethodParameters:
          Name  Flags
      dst       final
      position  final
      length    final

  public org.glassfish.grizzly.Buffer put(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.nio.ByteBuffer src
         0: .line 425
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* length */
        start local 2 // int length
         1: .line 427
            aload 1 /* src */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 2 /* length */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
         2: .line 428
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iload 2 /* length */
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         3: .line 430
            aload 0 /* this */
            areturn
        end local 2 // int length
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1     src  Ljava/nio/ByteBuffer;
            1    4     2  length  I
    MethodParameters:
      Name  Flags
      src   final

  public org.glassfish.grizzly.Buffer put(java.nio.ByteBuffer, int, int);
    descriptor: (Ljava/nio/ByteBuffer;II)Lorg/glassfish/grizzly/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.nio.ByteBuffer src
        start local 2 // int position
        start local 3 // int length
         0: .line 435
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 4 /* oldPos */
        start local 4 // int oldPos
         1: .line 436
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 5 /* oldLim */
        start local 5 // int oldLim
         2: .line 439
            aload 1 /* src */
            iload 2 /* position */
            iload 2 /* position */
            iload 3 /* length */
            iadd
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
         3: .line 440
            aload 1 /* src */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 3 /* length */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
         4: .line 441
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iload 3 /* length */
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         5: .line 442
            goto 9
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer java.nio.ByteBuffer int int int int
      StackMap stack: java.lang.Throwable
         6: astore 6
         7: .line 443
            aload 1 /* src */
            iload 4 /* oldPos */
            iload 5 /* oldLim */
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
         8: .line 444
            aload 6
            athrow
         9: .line 443
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            iload 4 /* oldPos */
            iload 5 /* oldLim */
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
        10: .line 446
            aload 0 /* this */
            areturn
        end local 5 // int oldLim
        end local 4 // int oldPos
        end local 3 // int length
        end local 2 // int position
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0   11     1       src  Ljava/nio/ByteBuffer;
            0   11     2  position  I
            0   11     3    length  I
            1   11     4    oldPos  I
            2   11     5    oldLim  I
      Exception table:
        from    to  target  type
           2     6       6  any
    MethodParameters:
          Name  Flags
      src       final
      position  final
      length    final

  public static org.glassfish.grizzly.memory.HeapBuffer wrap(byte[]);
    descriptor: ([B)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // byte[] heap
         0: .line 450
            aload 0 /* heap */
            iconst_0
            aload 0 /* heap */
            arraylength
            invokestatic org.glassfish.grizzly.memory.HeapBuffer.wrap:([BII)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
        end local 0 // byte[] heap
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  heap  [B
    MethodParameters:
      Name  Flags
      heap  

  public static org.glassfish.grizzly.memory.HeapBuffer wrap(byte[], int, int);
    descriptor: ([BII)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // byte[] heap
        start local 1 // int off
        start local 2 // int len
         0: .line 454
            new org.glassfish.grizzly.memory.HeapBuffer
            dup
            aload 0 /* heap */
            iload 1 /* off */
            iload 2 /* len */
            invokespecial org.glassfish.grizzly.memory.HeapBuffer.<init>:([BII)V
            areturn
        end local 2 // int len
        end local 1 // int off
        end local 0 // byte[] heap
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  heap  [B
            0    1     1   off  I
            0    1     2   len  I
    MethodParameters:
      Name  Flags
      heap  
      off   
      len   

  public org.glassfish.grizzly.memory.HeapBuffer put(byte[]);
    descriptor: ([B)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // byte[] src
         0: .line 459
            aload 0 /* this */
            aload 1 /* src */
            iconst_0
            aload 1 /* src */
            arraylength
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put:([BII)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
        end local 1 // byte[] src
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    1     1   src  [B
    MethodParameters:
      Name  Flags
      src   

  public org.glassfish.grizzly.memory.HeapBuffer put(byte[], int, int);
    descriptor: ([BII)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // byte[] src
        start local 2 // int offset
        start local 3 // int length
         0: .line 464
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iload 3 /* length */
            if_icmpge 2
         1: .line 465
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         2: .line 468
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            iload 2 /* offset */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 3 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 469
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iload 3 /* length */
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 471
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] src
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1     src  [B
            0    5     2  offset  I
            0    5     3  length  I
    MethodParameters:
        Name  Flags
      src     
      offset  
      length  

  public org.glassfish.grizzly.memory.HeapBuffer put8BitString(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.lang.String s
         0: .line 477
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 478
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iload 2 /* len */
            if_icmpge 3
         2: .line 479
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         3: .line 482
      StackMap locals: int
      StackMap stack:
            aload 1 /* s */
            iconst_0
            iload 2 /* len */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            invokevirtual java.lang.String.getBytes:(II[BI)V
         4: .line 483
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iload 2 /* len */
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         5: .line 485
            aload 0 /* this */
            areturn
        end local 2 // int len
        end local 1 // java.lang.String s
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    6     1     s  Ljava/lang/String;
            1    6     2   len  I
    MethodParameters:
      Name  Flags
      s     final

  public org.glassfish.grizzly.memory.HeapBuffer compact();
    descriptor: ()Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 490
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            istore 1 /* length */
        start local 1 // int length
         1: .line 491
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 492
            aload 0 /* this */
            iload 1 /* length */
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         3: .line 493
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
         4: .line 494
            aload 0 /* this */
            areturn
        end local 1 // int length
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            1    5     1  length  I

  public java.nio.ByteOrder order();
    descriptor: ()Ljava/nio/ByteOrder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 499
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.order:Ljava/nio/ByteOrder;
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public org.glassfish.grizzly.memory.HeapBuffer order(java.nio.ByteOrder);
    descriptor: (Ljava/nio/ByteOrder;)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.nio.ByteOrder bo
         0: .line 504
            aload 0 /* this */
            aload 1 /* bo */
            putfield org.glassfish.grizzly.memory.HeapBuffer.order:Ljava/nio/ByteOrder;
         1: .line 505
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.order:Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack: org.glassfish.grizzly.memory.HeapBuffer
         2: iconst_0
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer java.nio.ByteOrder
      StackMap stack: org.glassfish.grizzly.memory.HeapBuffer int
         3: putfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
         4: .line 506
            aload 0 /* this */
            areturn
        end local 1 // java.nio.ByteOrder bo
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1    bo  Ljava/nio/ByteOrder;
    MethodParameters:
      Name  Flags
      bo    

  public char getChar();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 511
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iconst_2
            if_icmpge 2
         1: .line 512
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 514
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getChar:([BIZ)C
            istore 1 /* c */
        start local 1 // char c
         3: .line 515
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iconst_2
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 516
            iload 1 /* c */
            ireturn
        end local 1 // char c
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            3    5     1     c  C

  public char getChar(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
         0: .line 521
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iconst_1
            isub
            if_icmplt 2
         1: .line 522
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getChar:([BIZ)C
            ireturn
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.glassfish.grizzly.memory.HeapBuffer putChar(char);
    descriptor: (C)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // char value
         0: .line 529
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iconst_2
            if_icmpge 2
         1: .line 530
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 1 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putChar:([BICZ)V
         3: .line 534
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iconst_2
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 535
            aload 0 /* this */
            areturn
        end local 1 // char value
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1  value  C
    MethodParameters:
       Name  Flags
      value  

  public org.glassfish.grizzly.memory.HeapBuffer putChar(int, char);
    descriptor: (IC)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
        start local 2 // char value
         0: .line 540
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iconst_1
            isub
            if_icmplt 2
         1: .line 541
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 543
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            iload 2 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putChar:([BICZ)V
         3: .line 544
            aload 0 /* this */
            areturn
        end local 2 // char value
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1  index  I
            0    4     2  value  C
    MethodParameters:
       Name  Flags
      index  
      value  

  public short getShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 549
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iconst_2
            if_icmpge 2
         1: .line 550
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 552
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getShort:([BIZ)S
            istore 1 /* s */
        start local 1 // short s
         3: .line 553
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iconst_2
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 554
            iload 1 /* s */
            ireturn
        end local 1 // short s
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            3    5     1     s  S

  public short getShort(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
         0: .line 559
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iconst_1
            isub
            if_icmplt 2
         1: .line 560
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 562
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getShort:([BIZ)S
            ireturn
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.glassfish.grizzly.memory.HeapBuffer putShort(short);
    descriptor: (S)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // short value
         0: .line 567
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iconst_2
            if_icmpge 2
         1: .line 568
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 1 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putShort:([BISZ)V
         3: .line 571
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iconst_2
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 572
            aload 0 /* this */
            areturn
        end local 1 // short value
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1  value  S
    MethodParameters:
       Name  Flags
      value  

  public org.glassfish.grizzly.memory.HeapBuffer putShort(int, short);
    descriptor: (IS)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
        start local 2 // short value
         0: .line 577
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iconst_1
            isub
            if_icmplt 2
         1: .line 578
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 580
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            iload 2 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putShort:([BISZ)V
         3: .line 581
            aload 0 /* this */
            areturn
        end local 2 // short value
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1  index  I
            0    4     2  value  S
    MethodParameters:
       Name  Flags
      index  
      value  

  public int getInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 586
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iconst_4
            if_icmpge 2
         1: .line 587
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 589
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getInt:([BIZ)I
            istore 1 /* i */
        start local 1 // int i
         3: .line 590
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iconst_4
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 591
            iload 1 /* i */
            ireturn
        end local 1 // int i
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            3    5     1     i  I

  public int getInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
         0: .line 596
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iconst_3
            isub
            if_icmplt 2
         1: .line 597
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 599
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getInt:([BIZ)I
            ireturn
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.glassfish.grizzly.memory.HeapBuffer putInt(int);
    descriptor: (I)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int value
         0: .line 604
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iconst_4
            if_icmpge 2
         1: .line 605
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 607
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            iload 1 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putInt:([BIIZ)V
         3: .line 608
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iconst_4
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 609
            aload 0 /* this */
            areturn
        end local 1 // int value
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public org.glassfish.grizzly.memory.HeapBuffer putInt(int, int);
    descriptor: (II)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
        start local 2 // int value
         0: .line 614
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iconst_3
            isub
            if_icmplt 2
         1: .line 615
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 617
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            iload 2 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putInt:([BIIZ)V
         3: .line 618
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1  index  I
            0    4     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public long getLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 623
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            bipush 8
            if_icmpge 2
         1: .line 624
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 626
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getLong:([BIZ)J
            lstore 1 /* l */
        start local 1 // long l
         3: .line 627
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            bipush 8
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 628
            lload 1 /* l */
            lreturn
        end local 1 // long l
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            3    5     1     l  J

  public long getLong(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
         0: .line 633
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            bipush 7
            isub
            if_icmplt 2
         1: .line 634
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 636
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getLong:([BIZ)J
            lreturn
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.glassfish.grizzly.memory.HeapBuffer putLong(long);
    descriptor: (J)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // long value
         0: .line 641
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            bipush 8
            if_icmpge 2
         1: .line 642
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 644
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            lload 1 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putLong:([BIJZ)V
         3: .line 645
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            bipush 8
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 646
            aload 0 /* this */
            areturn
        end local 1 // long value
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public org.glassfish.grizzly.memory.HeapBuffer putLong(int, long);
    descriptor: (IJ)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
        start local 2 // long value
         0: .line 651
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            bipush 7
            isub
            if_icmplt 2
         1: .line 652
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 654
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            lload 2 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putLong:([BIJZ)V
         3: .line 655
            aload 0 /* this */
            areturn
        end local 2 // long value
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1  index  I
            0    4     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public float getFloat();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 660
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iconst_4
            if_icmpge 2
         1: .line 661
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 663
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getFloat:([BIZ)F
            fstore 1 /* f */
        start local 1 // float f
         3: .line 664
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iconst_4
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 665
            fload 1 /* f */
            freturn
        end local 1 // float f
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            3    5     1     f  F

  public float getFloat(int);
    descriptor: (I)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
         0: .line 670
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iconst_3
            isub
            if_icmplt 2
         1: .line 671
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 673
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getFloat:([BIZ)F
            freturn
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.glassfish.grizzly.memory.HeapBuffer putFloat(float);
    descriptor: (F)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // float value
         0: .line 678
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            iconst_4
            if_icmpge 2
         1: .line 679
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 681
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            fload 1 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putFloat:([BIFZ)V
         3: .line 682
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iconst_4
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 683
            aload 0 /* this */
            areturn
        end local 1 // float value
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1  value  F
    MethodParameters:
       Name  Flags
      value  

  public org.glassfish.grizzly.memory.HeapBuffer putFloat(int, float);
    descriptor: (IF)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
        start local 2 // float value
         0: .line 688
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iconst_3
            isub
            if_icmplt 2
         1: .line 689
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 691
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            fload 2 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putFloat:([BIFZ)V
         3: .line 692
            aload 0 /* this */
            areturn
        end local 2 // float value
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1  index  I
            0    4     2  value  F
    MethodParameters:
       Name  Flags
      index  
      value  

  public double getDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 697
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            bipush 8
            if_icmpge 2
         1: .line 698
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 700
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getDouble:([BIZ)D
            dstore 1 /* d */
        start local 1 // double d
         3: .line 701
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            bipush 8
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 702
            dload 1 /* d */
            dreturn
        end local 1 // double d
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            3    5     1     d  D

  public double getDouble(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
         0: .line 707
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            bipush 7
            isub
            if_icmplt 2
         1: .line 708
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 710
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.getDouble:([BIZ)D
            dreturn
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.glassfish.grizzly.memory.HeapBuffer putDouble(double);
    descriptor: (D)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // double value
         0: .line 715
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            bipush 8
            if_icmpge 2
         1: .line 716
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         2: .line 718
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            dload 1 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putDouble:([BIDZ)V
         3: .line 719
            aload 0 /* this */
            dup
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            bipush 8
            iadd
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         4: .line 720
            aload 0 /* this */
            areturn
        end local 1 // double value
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    5     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public org.glassfish.grizzly.memory.HeapBuffer putDouble(int, double);
    descriptor: (ID)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int index
        start local 2 // double value
         0: .line 725
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            bipush 7
            isub
            if_icmplt 2
         1: .line 726
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 728
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* index */
            iadd
            dload 2 /* value */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            invokestatic org.glassfish.grizzly.memory.Bits.putDouble:([BIDZ)V
         3: .line 729
            aload 0 /* this */
            areturn
        end local 2 // double value
        end local 1 // int index
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    4     1  index  I
            0    4     2  value  D
    MethodParameters:
       Name  Flags
      index  
      value  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 734
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.allowBufferDispose:Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* result */
        start local 1 // int result
         3: .line 735
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.disposeStackTrace:Ljava/lang/Exception;
            ifnull 4
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.disposeStackTrace:Ljava/lang/Exception;
            invokevirtual java.lang.Object.hashCode:()I
            goto 5
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer int
      StackMap stack: int
         4: iconst_0
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer int
      StackMap stack: int int
         5: iadd
            istore 1 /* result */
         6: .line 736
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            ifnull 7
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            invokestatic java.util.Arrays.hashCode:([B)I
            goto 8
      StackMap locals:
      StackMap stack: int
         7: iconst_0
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer int
      StackMap stack: int int
         8: iadd
            istore 1 /* result */
         9: .line 737
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iadd
            istore 1 /* result */
        10: .line 738
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            iadd
            istore 1 /* result */
        11: .line 739
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            iadd
            istore 1 /* result */
        12: .line 740
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            iadd
            istore 1 /* result */
        13: .line 741
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.mark:I
            iadd
            istore 1 /* result */
        14: .line 742
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.readOnly:Z
            ifeq 15
            iconst_1
            goto 16
      StackMap locals:
      StackMap stack: int
        15: iconst_0
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer int
      StackMap stack: int int
        16: iadd
            istore 1 /* result */
        17: .line 743
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.order:Ljava/nio/ByteOrder;
            ifnull 18
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.order:Ljava/nio/ByteOrder;
            invokevirtual java.lang.Object.hashCode:()I
            goto 19
      StackMap locals:
      StackMap stack: int
        18: iconst_0
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer int
      StackMap stack: int int
        19: iadd
            istore 1 /* result */
        20: .line 744
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.bigEndian:Z
            ifeq 21
            iconst_1
            goto 22
      StackMap locals:
      StackMap stack: int
        21: iconst_0
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer int
      StackMap stack: int int
        22: iadd
            istore 1 /* result */
        23: .line 745
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   24     0    this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            3   24     1  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=8, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.lang.Object obj
         0: .line 750
            aload 1 /* obj */
            instanceof org.glassfish.grizzly.Buffer
            ifeq 15
         1: .line 751
            aload 1 /* obj */
            checkcast org.glassfish.grizzly.Buffer
            astore 2 /* that */
        start local 2 // org.glassfish.grizzly.Buffer that
         2: .line 752
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            aload 2 /* that */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            if_icmpeq 4
         3: .line 753
            iconst_0
            ireturn
         4: .line 755
      StackMap locals: org.glassfish.grizzly.Buffer
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.position:()I
            istore 3 /* p */
        start local 3 // int p
         5: .line 756
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.limit:()I
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         6: aload 2 /* that */
            invokeinterface org.glassfish.grizzly.Buffer.limit:()I
            iconst_1
            isub
            istore 5 /* j */
        start local 5 // int j
         7: goto 13
         8: .line 757
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.get:(I)B
            istore 6 /* v1 */
        start local 6 // byte v1
         9: .line 758
            aload 2 /* that */
            iload 5 /* j */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 7 /* v2 */
        start local 7 // byte v2
        10: .line 759
            iload 6 /* v1 */
            iload 7 /* v2 */
            if_icmpeq 12
        11: .line 760
            iconst_0
            ireturn
        end local 7 // byte v2
        end local 6 // byte v1
        12: .line 756
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ -1
            iinc 5 /* j */ -1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            iload 3 /* p */
            if_icmpge 8
        end local 5 // int j
        end local 4 // int i
        14: .line 763
            iconst_1
            ireturn
        end local 3 // int p
        end local 2 // org.glassfish.grizzly.Buffer that
        15: .line 766
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer java.lang.Object
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0   16     1   obj  Ljava/lang/Object;
            2   15     2  that  Lorg/glassfish/grizzly/Buffer;
            5   15     3     p  I
            6   14     4     i  I
            7   14     5     j  I
            9   12     6    v1  B
           10   12     7    v2  B
    MethodParameters:
      Name  Flags
      obj   

  public int compareTo(org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/Buffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // org.glassfish.grizzly.Buffer o
         0: .line 772
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.position:()I
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            aload 1 /* o */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            iadd
            istore 2 /* n */
        start local 2 // int n
         1: .line 773
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.position:()I
            istore 3 /* i */
        start local 3 // int i
         2: aload 1 /* o */
            invokeinterface org.glassfish.grizzly.Buffer.position:()I
            istore 4 /* j */
        start local 4 // int j
         3: goto 12
         4: .line 774
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.get:(I)B
            istore 5 /* v1 */
        start local 5 // byte v1
         5: .line 775
            aload 1 /* o */
            iload 4 /* j */
            invokeinterface org.glassfish.grizzly.Buffer.get:(I)B
            istore 6 /* v2 */
        start local 6 // byte v2
         6: .line 776
            iload 5 /* v1 */
            iload 6 /* v2 */
            if_icmpne 8
         7: .line 777
            goto 11
         8: .line 779
      StackMap locals: int int
      StackMap stack:
            iload 5 /* v1 */
            iload 6 /* v2 */
            if_icmpge 10
         9: .line 780
            iconst_m1
            ireturn
        10: .line 782
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 6 // byte v2
        end local 5 // byte v1
        11: .line 773
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            iload 2 /* n */
            if_icmplt 4
        end local 4 // int j
        end local 3 // int i
        13: .line 785
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.remaining:()I
            aload 1 /* o */
            invokeinterface org.glassfish.grizzly.Buffer.remaining:()I
            isub
            ireturn
        end local 2 // int n
        end local 1 // org.glassfish.grizzly.Buffer o
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0   14     1     o  Lorg/glassfish/grizzly/Buffer;
            1   14     2     n  I
            2   13     3     i  I
            3   13     4     j  I
            5   11     5    v1  B
            6   11     6    v2  B
    MethodParameters:
      Name  Flags
      o     

  protected void checkDispose();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 789
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            ifnonnull 2
         1: .line 790
            new java.lang.IllegalStateException
            dup
            ldc "HeapBuffer has already been disposed"
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.disposeStackTrace:Ljava/lang/Exception;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
         2: .line 792
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 796
            new java.lang.StringBuilder
            dup
            new java.lang.StringBuilder
            dup
            ldc "HeapBuffer ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ") "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 797
            aload 1 /* sb */
            ldc "[pos="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 798
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         3: .line 799
            aload 1 /* sb */
            ldc " lim="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 800
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         5: .line 801
            aload 1 /* sb */
            ldc " cap="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 802
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.cap:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         7: .line 803
            aload 1 /* sb */
            bipush 93
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         8: .line 804
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            1    9     1    sb  Ljava/lang/StringBuilder;

  public java.lang.String toStringContent();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 809
            aload 0 /* this */
            invokestatic java.nio.charset.Charset.defaultCharset:()Ljava/nio/charset/Charset;
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toStringContent:(Ljava/nio/charset/Charset;II)Ljava/lang/String;
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public java.lang.String toStringContent(java.nio.charset.Charset);
    descriptor: (Ljava/nio/charset/Charset;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.nio.charset.Charset charset
         0: .line 814
            aload 0 /* this */
            aload 1 /* charset */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toStringContent:(Ljava/nio/charset/Charset;II)Ljava/lang/String;
            areturn
        end local 1 // java.nio.charset.Charset charset
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    1     1  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      charset  final

  public java.lang.String toStringContent(java.nio.charset.Charset, int, int);
    descriptor: (Ljava/nio/charset/Charset;II)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.nio.charset.Charset charset
        start local 2 // int position
        start local 3 // int limit
         0: .line 819
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.checkDispose:()V
         1: .line 820
            aload 1 /* charset */
            ifnonnull 3
         2: .line 821
            invokestatic java.nio.charset.Charset.defaultCharset:()Ljava/nio/charset/Charset;
            astore 1 /* charset */
         3: .line 824
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
            ifnull 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 4 /* isRestoreByteBuffer */
        start local 4 // boolean isRestoreByteBuffer
         6: .line 825
            iconst_0
            istore 5 /* oldPosition */
        start local 5 // int oldPosition
         7: .line 826
            iconst_0
            istore 6 /* oldLimit */
        start local 6 // int oldLimit
         8: .line 828
            iload 4 /* isRestoreByteBuffer */
            ifeq 11
         9: .line 830
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 5 /* oldPosition */
        10: .line 831
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 6 /* oldLimit */
        11: .line 834
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* position */
            iload 3 /* limit */
            iconst_0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toByteBuffer0:(IIZ)Ljava/nio/ByteBuffer;
            astore 7 /* bb */
        start local 7 // java.nio.ByteBuffer bb
        12: .line 837
            aload 1 /* charset */
            aload 7 /* bb */
            invokevirtual java.nio.charset.Charset.decode:(Ljava/nio/ByteBuffer;)Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.toString:()Ljava/lang/String;
            astore 9
        13: .line 839
            iload 4 /* isRestoreByteBuffer */
            ifeq 15
        14: .line 840
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
            iload 5 /* oldPosition */
            iload 6 /* oldLimit */
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
        15: .line 837
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer java.nio.charset.Charset int int int int int java.nio.ByteBuffer top java.lang.String
      StackMap stack:
            aload 9
            areturn
        16: .line 838
      StackMap locals: org.glassfish.grizzly.memory.HeapBuffer java.nio.charset.Charset int int int int int java.nio.ByteBuffer
      StackMap stack: java.lang.Throwable
            astore 8
        17: .line 839
            iload 4 /* isRestoreByteBuffer */
            ifeq 19
        18: .line 840
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
            iload 5 /* oldPosition */
            iload 6 /* oldLimit */
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
        19: .line 842
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 8
            athrow
        end local 7 // java.nio.ByteBuffer bb
        end local 6 // int oldLimit
        end local 5 // int oldPosition
        end local 4 // boolean isRestoreByteBuffer
        end local 3 // int limit
        end local 2 // int position
        end local 1 // java.nio.charset.Charset charset
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   20     0                 this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0   20     1              charset  Ljava/nio/charset/Charset;
            0   20     2             position  I
            0   20     3                limit  I
            6   20     4  isRestoreByteBuffer  Z
            7   20     5          oldPosition  I
            8   20     6             oldLimit  I
           12   20     7                   bb  Ljava/nio/ByteBuffer;
      Exception table:
        from    to  target  type
          12    13      16  any
    MethodParameters:
          Name  Flags
      charset   
      position  final
      limit     final

  public void dumpHex(java.lang.Appendable);
    descriptor: (Ljava/lang/Appendable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // java.lang.Appendable appendable
         0: .line 850
            aload 1 /* appendable */
            aload 0 /* this */
            invokestatic org.glassfish.grizzly.memory.Buffers.dumpBuffer:(Ljava/lang/Appendable;Lorg/glassfish/grizzly/Buffer;)V
         1: .line 851
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    2     1  appendable  Ljava/lang/Appendable;
    MethodParameters:
            Name  Flags
      appendable  

  public java.nio.ByteBuffer toByteBuffer();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 858
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toByteBuffer:(II)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public java.nio.ByteBuffer toByteBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int position
        start local 2 // int limit
         0: .line 866
            aload 0 /* this */
            iload 1 /* position */
            iload 2 /* limit */
            iconst_0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toByteBuffer0:(IIZ)Ljava/nio/ByteBuffer;
            areturn
        end local 2 // int limit
        end local 1 // int position
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    1     1  position  I
            0    1     2     limit  I
    MethodParameters:
          Name  Flags
      position  final
      limit     final

  public final org.glassfish.grizzly.memory.ByteBufferArray toByteBufferArray();
    descriptor: ()Lorg/glassfish/grizzly/memory/ByteBufferArray;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 874
            invokestatic org.glassfish.grizzly.memory.ByteBufferArray.create:()Lorg/glassfish/grizzly/memory/ByteBufferArray;
            astore 1 /* array */
        start local 1 // org.glassfish.grizzly.memory.ByteBufferArray array
         1: .line 875
            aload 1 /* array */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toByteBuffer:()Ljava/nio/ByteBuffer;
            invokevirtual org.glassfish.grizzly.memory.ByteBufferArray.add:(Ljava/lang/Object;)V
         2: .line 877
            aload 1 /* array */
            areturn
        end local 1 // org.glassfish.grizzly.memory.ByteBufferArray array
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            1    3     1  array  Lorg/glassfish/grizzly/memory/ByteBufferArray;

  public final org.glassfish.grizzly.memory.ByteBufferArray toByteBufferArray(int, int);
    descriptor: (II)Lorg/glassfish/grizzly/memory/ByteBufferArray;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int position
        start local 2 // int limit
         0: .line 885
            aload 0 /* this */
            invokestatic org.glassfish.grizzly.memory.ByteBufferArray.create:()Lorg/glassfish/grizzly/memory/ByteBufferArray;
            iload 1 /* position */
            iload 2 /* limit */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toByteBufferArray:(Lorg/glassfish/grizzly/memory/ByteBufferArray;II)Lorg/glassfish/grizzly/memory/ByteBufferArray;
            areturn
        end local 2 // int limit
        end local 1 // int position
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    1     1  position  I
            0    1     2     limit  I
    MethodParameters:
          Name  Flags
      position  final
      limit     final

  public final org.glassfish.grizzly.memory.ByteBufferArray toByteBufferArray(org.glassfish.grizzly.memory.ByteBufferArray);
    descriptor: (Lorg/glassfish/grizzly/memory/ByteBufferArray;)Lorg/glassfish/grizzly/memory/ByteBufferArray;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // org.glassfish.grizzly.memory.ByteBufferArray array
         0: .line 893
            aload 1 /* array */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toByteBuffer:()Ljava/nio/ByteBuffer;
            invokevirtual org.glassfish.grizzly.memory.ByteBufferArray.add:(Ljava/lang/Object;)V
         1: .line 894
            aload 1 /* array */
            areturn
        end local 1 // org.glassfish.grizzly.memory.ByteBufferArray array
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    2     1  array  Lorg/glassfish/grizzly/memory/ByteBufferArray;
    MethodParameters:
       Name  Flags
      array  final

  public final org.glassfish.grizzly.memory.ByteBufferArray toByteBufferArray(org.glassfish.grizzly.memory.ByteBufferArray, int, int);
    descriptor: (Lorg/glassfish/grizzly/memory/ByteBufferArray;II)Lorg/glassfish/grizzly/memory/ByteBufferArray;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // org.glassfish.grizzly.memory.ByteBufferArray array
        start local 2 // int position
        start local 3 // int limit
         0: .line 903
            aload 1 /* array */
            aload 0 /* this */
            iload 2 /* position */
            iload 3 /* limit */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toByteBuffer:(II)Ljava/nio/ByteBuffer;
            invokevirtual org.glassfish.grizzly.memory.ByteBufferArray.add:(Ljava/lang/Object;)V
         1: .line 905
            aload 1 /* array */
            areturn
        end local 3 // int limit
        end local 2 // int position
        end local 1 // org.glassfish.grizzly.memory.ByteBufferArray array
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    2     1     array  Lorg/glassfish/grizzly/memory/ByteBufferArray;
            0    2     2  position  I
            0    2     3     limit  I
    MethodParameters:
          Name  Flags
      array     final
      position  final
      limit     final

  public final org.glassfish.grizzly.memory.BufferArray toBufferArray();
    descriptor: ()Lorg/glassfish/grizzly/memory/BufferArray;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 913
            invokestatic org.glassfish.grizzly.memory.BufferArray.create:()Lorg/glassfish/grizzly/memory/BufferArray;
            astore 1 /* array */
        start local 1 // org.glassfish.grizzly.memory.BufferArray array
         1: .line 914
            aload 1 /* array */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.BufferArray.add:(Ljava/lang/Object;)V
         2: .line 916
            aload 1 /* array */
            areturn
        end local 1 // org.glassfish.grizzly.memory.BufferArray array
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            1    3     1  array  Lorg/glassfish/grizzly/memory/BufferArray;

  public final org.glassfish.grizzly.memory.BufferArray toBufferArray(int, int);
    descriptor: (II)Lorg/glassfish/grizzly/memory/BufferArray;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int position
        start local 2 // int limit
         0: .line 924
            aload 0 /* this */
            invokestatic org.glassfish.grizzly.memory.BufferArray.create:()Lorg/glassfish/grizzly/memory/BufferArray;
            iload 1 /* position */
            iload 2 /* limit */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.toBufferArray:(Lorg/glassfish/grizzly/memory/BufferArray;II)Lorg/glassfish/grizzly/memory/BufferArray;
            areturn
        end local 2 // int limit
        end local 1 // int position
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    1     1  position  I
            0    1     2     limit  I
    MethodParameters:
          Name  Flags
      position  final
      limit     final

  public final org.glassfish.grizzly.memory.BufferArray toBufferArray(org.glassfish.grizzly.memory.BufferArray);
    descriptor: (Lorg/glassfish/grizzly/memory/BufferArray;)Lorg/glassfish/grizzly/memory/BufferArray;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // org.glassfish.grizzly.memory.BufferArray array
         0: .line 932
            aload 1 /* array */
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.BufferArray.add:(Ljava/lang/Object;)V
         1: .line 933
            aload 1 /* array */
            areturn
        end local 1 // org.glassfish.grizzly.memory.BufferArray array
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    2     1  array  Lorg/glassfish/grizzly/memory/BufferArray;
    MethodParameters:
       Name  Flags
      array  final

  public final org.glassfish.grizzly.memory.BufferArray toBufferArray(org.glassfish.grizzly.memory.BufferArray, int, int);
    descriptor: (Lorg/glassfish/grizzly/memory/BufferArray;II)Lorg/glassfish/grizzly/memory/BufferArray;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // org.glassfish.grizzly.memory.BufferArray array
        start local 2 // int position
        start local 3 // int limit
         0: .line 942
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
            istore 4 /* oldPos */
        start local 4 // int oldPos
         1: .line 943
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
            istore 5 /* oldLim */
        start local 5 // int oldLim
         2: .line 945
            aload 0 /* this */
            iload 2 /* position */
            putfield org.glassfish.grizzly.memory.HeapBuffer.pos:I
         3: .line 946
            aload 0 /* this */
            iload 3 /* limit */
            putfield org.glassfish.grizzly.memory.HeapBuffer.lim:I
         4: .line 948
            aload 1 /* array */
            aload 0 /* this */
            iload 4 /* oldPos */
            iload 5 /* oldLim */
            invokevirtual org.glassfish.grizzly.memory.BufferArray.add:(Ljava/lang/Object;II)V
         5: .line 949
            aload 1 /* array */
            areturn
        end local 5 // int oldLim
        end local 4 // int oldPos
        end local 3 // int limit
        end local 2 // int position
        end local 1 // org.glassfish.grizzly.memory.BufferArray array
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    6     1     array  Lorg/glassfish/grizzly/memory/BufferArray;
            0    6     2  position  I
            0    6     3     limit  I
            1    6     4    oldPos  I
            2    6     5    oldLim  I
    MethodParameters:
          Name  Flags
      array     final
      position  final
      limit     final

  public boolean release();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 954
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.tryDispose:()Z
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public boolean isExternal();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 962
            iconst_0
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public boolean hasArray();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 967
            iconst_1
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public int arrayOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 972
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            ireturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  public byte[] array();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 977
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            areturn
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  protected void onShareHeap();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
         0: .line 983
            return
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/memory/HeapBuffer;

  protected org.glassfish.grizzly.memory.HeapBuffer createHeapBuffer(int, int);
    descriptor: (II)Lorg/glassfish/grizzly/memory/HeapBuffer;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int offs
        start local 2 // int capacity
         0: .line 993
            aload 0 /* this */
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.onShareHeap:()V
         1: .line 995
            new org.glassfish.grizzly.memory.HeapBuffer
            dup
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            iload 1 /* offs */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iadd
            iload 2 /* capacity */
            invokespecial org.glassfish.grizzly.memory.HeapBuffer.<init>:([BII)V
            areturn
        end local 2 // int capacity
        end local 1 // int offs
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    2     1      offs  I
            0    2     2  capacity  I
    MethodParameters:
          Name  Flags
      offs      final
      capacity  final

  protected java.nio.ByteBuffer toByteBuffer0(int, int, boolean);
    descriptor: (IIZ)Ljava/nio/ByteBuffer;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.glassfish.grizzly.memory.HeapBuffer this
        start local 1 // int pos
        start local 2 // int lim
        start local 3 // boolean slice
         0: .line 999
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 1000
            aload 0 /* this */
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.heap:[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            putfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
         2: .line 1003
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 1 /* pos */
            iadd
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.offset:I
            iload 2 /* lim */
            iadd
            invokestatic org.glassfish.grizzly.memory.Buffers.setPositionLimit:(Ljava/nio/ByteBuffer;II)V
         3: .line 1005
            iload 3 /* slice */
            ifeq 4
            aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.slice:()Ljava/nio/ByteBuffer;
            goto 5
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield org.glassfish.grizzly.memory.HeapBuffer.byteBuffer:Ljava/nio/ByteBuffer;
      StackMap locals:
      StackMap stack: java.nio.ByteBuffer
         5: areturn
        end local 3 // boolean slice
        end local 2 // int lim
        end local 1 // int pos
        end local 0 // org.glassfish.grizzly.memory.HeapBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/glassfish/grizzly/memory/HeapBuffer;
            0    6     1    pos  I
            0    6     2    lim  I
            0    6     3  slice  Z
    MethodParameters:
       Name  Flags
      pos    final
      lim    final
      slice  final

  public org.glassfish.grizzly.Buffer putChar(int, char);
    descriptor: (IC)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putChar:(IC)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putChar(char);
    descriptor: (C)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putChar:(C)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putInt(int, int);
    descriptor: (II)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putInt:(II)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putInt(int);
    descriptor: (I)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putInt:(I)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer duplicate();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.duplicate:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer position(int);
    descriptor: (I)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.position:(I)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putDouble(int, double);
    descriptor: (ID)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
         0: .line 1
            aload 0
            iload 1
            dload 2
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putDouble:(ID)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putDouble(double);
    descriptor: (D)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putDouble:(D)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer limit(int);
    descriptor: (I)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.limit:(I)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer reset();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.reset:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer prepend(org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.prepend:(Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer put(byte[], int, int);
    descriptor: ([BII)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put:([BII)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer put(byte[]);
    descriptor: ([B)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put:([B)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer put(org.glassfish.grizzly.Buffer, int, int);
    descriptor: (Lorg/glassfish/grizzly/Buffer;II)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put:(Lorg/glassfish/grizzly/Buffer;II)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer put(org.glassfish.grizzly.Buffer);
    descriptor: (Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put:(Lorg/glassfish/grizzly/Buffer;)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer put(int, byte);
    descriptor: (IB)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put:(IB)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer put(byte);
    descriptor: (B)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put:(B)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer slice(int, int);
    descriptor: (II)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.slice:(II)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer slice();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.slice:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer order(java.nio.ByteOrder);
    descriptor: (Ljava/nio/ByteOrder;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.order:(Ljava/nio/ByteOrder;)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer clear();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.clear:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object underlying();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.underlying:()Ljava/nio/ByteBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer compact();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.compact:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer get(byte[], int, int);
    descriptor: ([BII)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.get:([BII)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer get(byte[]);
    descriptor: ([B)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.get:([B)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer asReadOnlyBuffer();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.asReadOnlyBuffer:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer mark();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.mark:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int compareTo(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.glassfish.grizzly.Buffer
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.compareTo:(Lorg/glassfish/grizzly/Buffer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer put8BitString(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.put8BitString:(Ljava/lang/String;)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putLong(int, long);
    descriptor: (IJ)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
         0: .line 1
            aload 0
            iload 1
            lload 2
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putLong:(IJ)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putLong(long);
    descriptor: (J)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putLong:(J)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer rewind();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.rewind:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer flip();
    descriptor: ()Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.flip:()Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putFloat(int, float);
    descriptor: (IF)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            fload 2
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putFloat:(IF)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putFloat(float);
    descriptor: (F)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            fload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putFloat:(F)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putShort(int, short);
    descriptor: (IS)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putShort:(IS)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.glassfish.grizzly.Buffer putShort(short);
    descriptor: (S)Lorg/glassfish/grizzly/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.glassfish.grizzly.memory.HeapBuffer.putShort:(S)Lorg/glassfish/grizzly/memory/HeapBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "HeapBuffer.java"
NestMembers:
  org.glassfish.grizzly.memory.HeapBuffer$DebugLogic
InnerClasses:
  private DebugLogic = org.glassfish.grizzly.memory.HeapBuffer$DebugLogic of org.glassfish.grizzly.memory.HeapBuffer