class io.netty.buffer.PooledHeapByteBuf extends io.netty.buffer.PooledByteBuf<byte[]>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.netty.buffer.PooledHeapByteBuf
  super_class: io.netty.buffer.PooledByteBuf
{
  private static final io.netty.util.Recycler<io.netty.buffer.PooledHeapByteBuf> RECYCLER;
    descriptor: Lio/netty/util/Recycler;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Lio/netty/util/Recycler<Lio/netty/buffer/PooledHeapByteBuf;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 31
            new io.netty.buffer.PooledHeapByteBuf$1
            dup
            invokespecial io.netty.buffer.PooledHeapByteBuf$1.<init>:()V
            putstatic io.netty.buffer.PooledHeapByteBuf.RECYCLER:Lio/netty/util/Recycler;
         1: .line 36
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static io.netty.buffer.PooledHeapByteBuf newInstance(int);
    descriptor: (I)Lio/netty/buffer/PooledHeapByteBuf;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // int maxCapacity
         0: .line 39
            getstatic io.netty.buffer.PooledHeapByteBuf.RECYCLER:Lio/netty/util/Recycler;
            invokevirtual io.netty.util.Recycler.get:()Ljava/lang/Object;
            checkcast io.netty.buffer.PooledHeapByteBuf
            astore 1 /* buf */
        start local 1 // io.netty.buffer.PooledHeapByteBuf buf
         1: .line 40
            aload 1 /* buf */
            iload 0 /* maxCapacity */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.reuse:(I)V
         2: .line 41
            aload 1 /* buf */
            areturn
        end local 1 // io.netty.buffer.PooledHeapByteBuf buf
        end local 0 // int maxCapacity
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0  maxCapacity  I
            1    3     1          buf  Lio/netty/buffer/PooledHeapByteBuf;
    MethodParameters:
             Name  Flags
      maxCapacity  

  void <init>(io.netty.util.Recycler$Handle<? extends io.netty.buffer.PooledHeapByteBuf>, );
    descriptor: (Lio/netty/util/Recycler$Handle;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // io.netty.util.Recycler$Handle recyclerHandle
        start local 2 // int maxCapacity
         0: .line 45
            aload 0 /* this */
            aload 1 /* recyclerHandle */
            iload 2 /* maxCapacity */
            invokespecial io.netty.buffer.PooledByteBuf.<init>:(Lio/netty/util/Recycler$Handle;I)V
         1: .line 46
            return
        end local 2 // int maxCapacity
        end local 1 // io.netty.util.Recycler$Handle recyclerHandle
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  recyclerHandle  Lio/netty/util/Recycler$Handle<+Lio/netty/buffer/PooledHeapByteBuf;>;
            0    2     2     maxCapacity  I
    Signature: (Lio/netty/util/Recycler$Handle<+Lio/netty/buffer/PooledHeapByteBuf;>;I)V
    MethodParameters:
                Name  Flags
      recyclerHandle  
      maxCapacity     

  public final boolean isDirect();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
         0: .line 50
            iconst_0
            ireturn
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/PooledHeapByteBuf;

  protected byte _getByte(int);
    descriptor: (I)B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 55
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getByte:([BI)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShort(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 60
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getShort:([BI)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShortLE(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 65
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getShortLE:([BI)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 70
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getUnsignedMedium:([BI)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 75
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getUnsignedMediumLE:([BI)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getInt(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 80
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getInt:([BI)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getIntLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 85
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getIntLE:([BI)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLong(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 90
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getLong:([BI)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLongLE(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
         0: .line 95
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            invokestatic io.netty.buffer.HeapByteBufUtil.getLongLE:([BI)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public final io.netty.buffer.ByteBuf getBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 100
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            iload 3 /* dstIndex */
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.capacity:()I
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkDstIndex:(IIII)V
         1: .line 101
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.hasMemoryAddress:()Z
            ifeq 4
         2: .line 102
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.memoryAddress:()J
            iload 3 /* dstIndex */
            i2l
            ladd
            iload 4 /* length */
            i2l
            invokestatic io.netty.util.internal.PlatformDependent.copyMemory:([BIJJ)V
         3: .line 103
            goto 8
      StackMap locals:
      StackMap stack:
         4: aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.hasArray:()Z
            ifeq 7
         5: .line 104
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.array:()[B
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.arrayOffset:()I
            iload 3 /* dstIndex */
            iadd
            iload 4 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         6: .line 105
            goto 8
         7: .line 106
      StackMap locals:
      StackMap stack:
            aload 2 /* dst */
            iload 3 /* dstIndex */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         8: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int dstIndex
        end local 2 // io.netty.buffer.ByteBuf dst
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lio/netty/buffer/PooledHeapByteBuf;
            0    9     1     index  I
            0    9     2       dst  Lio/netty/buffer/ByteBuf;
            0    9     3  dstIndex  I
            0    9     4    length  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public final io.netty.buffer.ByteBuf getBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // byte[] dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 113
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            iload 3 /* dstIndex */
            aload 2 /* dst */
            arraylength
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkDstIndex:(IIII)V
         1: .line 114
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 115
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int dstIndex
        end local 2 // byte[] dst
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/buffer/PooledHeapByteBuf;
            0    3     1     index  I
            0    3     2       dst  [B
            0    3     3  dstIndex  I
            0    3     4    length  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public final io.netty.buffer.ByteBuf getBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer dst
         0: .line 120
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 121
            aload 2 /* dst */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
         2: .line 122
            aload 0 /* this */
            areturn
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    3     1  index  I
            0    3     2    dst  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      dst    

  public final io.netty.buffer.ByteBuf getBytes(int, java.io.OutputStream, int);
    descriptor: (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.io.OutputStream out
        start local 3 // int length
         0: .line 127
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 128
            aload 2 /* out */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 3 /* length */
            invokevirtual java.io.OutputStream.write:([BII)V
         2: .line 129
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // java.io.OutputStream out
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    3     1   index  I
            0    3     2     out  Ljava/io/OutputStream;
            0    3     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public final int getBytes(int, java.nio.channels.GatheringByteChannel, int);
    descriptor: (ILjava/nio/channels/GatheringByteChannel;I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.GatheringByteChannel out
        start local 3 // int length
         0: .line 134
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* out */
            iload 3 /* length */
            iconst_0
            invokevirtual io.netty.buffer.PooledHeapByteBuf.getBytes:(ILjava/nio/channels/GatheringByteChannel;IZ)I
            ireturn
        end local 3 // int length
        end local 2 // java.nio.channels.GatheringByteChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1   index  I
            0    1     2     out  Ljava/nio/channels/GatheringByteChannel;
            0    1     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  private int getBytes(int, java.nio.channels.GatheringByteChannel, int, boolean);
    descriptor: (ILjava/nio/channels/GatheringByteChannel;IZ)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=5
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.GatheringByteChannel out
        start local 3 // int length
        start local 4 // boolean internal
         0: .line 138
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 139
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            istore 1 /* index */
         2: .line 141
            iload 4 /* internal */
            ifeq 5
         3: .line 142
            aload 0 /* this */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            astore 5 /* tmpBuf */
        start local 5 // java.nio.ByteBuffer tmpBuf
         4: .line 143
            goto 6
        end local 5 // java.nio.ByteBuffer tmpBuf
         5: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 5 /* tmpBuf */
        start local 5 // java.nio.ByteBuffer tmpBuf
         6: .line 146
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            aload 2 /* out */
            aload 5 /* tmpBuf */
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            iload 1 /* index */
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            iload 1 /* index */
            iload 3 /* length */
            iadd
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            checkcast java.nio.ByteBuffer
            invokeinterface java.nio.channels.GatheringByteChannel.write:(Ljava/nio/ByteBuffer;)I
            ireturn
        end local 5 // java.nio.ByteBuffer tmpBuf
        end local 4 // boolean internal
        end local 3 // int length
        end local 2 // java.nio.channels.GatheringByteChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/netty/buffer/PooledHeapByteBuf;
            0    7     1     index  I
            0    7     2       out  Ljava/nio/channels/GatheringByteChannel;
            0    7     3    length  I
            0    7     4  internal  Z
            4    5     5    tmpBuf  Ljava/nio/ByteBuffer;
            6    7     5    tmpBuf  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      out       
      length    
      internal  

  public final int getBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel out
        start local 3 // long position
        start local 5 // int length
         0: .line 151
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* out */
            lload 3 /* position */
            iload 5 /* length */
            iconst_0
            invokevirtual io.netty.buffer.PooledHeapByteBuf.getBytes:(ILjava/nio/channels/FileChannel;JIZ)I
            ireturn
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1     index  I
            0    1     2       out  Ljava/nio/channels/FileChannel;
            0    1     3  position  J
            0    1     5    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      out       
      position  
      length    

  private int getBytes(int, java.nio.channels.FileChannel, long, int, boolean);
    descriptor: (ILjava/nio/channels/FileChannel;JIZ)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=6
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel out
        start local 3 // long position
        start local 5 // int length
        start local 6 // boolean internal
         0: .line 155
            aload 0 /* this */
            iload 1 /* index */
            iload 5 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 156
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            istore 1 /* index */
         2: .line 157
            iload 6 /* internal */
            ifeq 3
            aload 0 /* this */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            goto 4
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
      StackMap locals:
      StackMap stack: java.nio.ByteBuffer
         4: astore 7 /* tmpBuf */
        start local 7 // java.nio.ByteBuffer tmpBuf
         5: .line 158
            aload 2 /* out */
            aload 7 /* tmpBuf */
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            iload 1 /* index */
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            iload 1 /* index */
            iload 5 /* length */
            iadd
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            checkcast java.nio.ByteBuffer
            lload 3 /* position */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;J)I
            ireturn
        end local 7 // java.nio.ByteBuffer tmpBuf
        end local 6 // boolean internal
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/netty/buffer/PooledHeapByteBuf;
            0    6     1     index  I
            0    6     2       out  Ljava/nio/channels/FileChannel;
            0    6     3  position  J
            0    6     5    length  I
            0    6     6  internal  Z
            5    6     7    tmpBuf  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      out       
      position  
      length    
      internal  

  public final int readBytes(java.nio.channels.GatheringByteChannel, int);
    descriptor: (Ljava/nio/channels/GatheringByteChannel;I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // java.nio.channels.GatheringByteChannel out
        start local 2 // int length
         0: .line 163
            aload 0 /* this */
            iload 2 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkReadableBytes:(I)V
         1: .line 164
            aload 0 /* this */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.readerIndex:I
            aload 1 /* out */
            iload 2 /* length */
            iconst_1
            invokevirtual io.netty.buffer.PooledHeapByteBuf.getBytes:(ILjava/nio/channels/GatheringByteChannel;IZ)I
            istore 3 /* readBytes */
        start local 3 // int readBytes
         2: .line 165
            aload 0 /* this */
            dup
            getfield io.netty.buffer.PooledHeapByteBuf.readerIndex:I
            iload 3 /* readBytes */
            iadd
            putfield io.netty.buffer.PooledHeapByteBuf.readerIndex:I
         3: .line 166
            iload 3 /* readBytes */
            ireturn
        end local 3 // int readBytes
        end local 2 // int length
        end local 1 // java.nio.channels.GatheringByteChannel out
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/netty/buffer/PooledHeapByteBuf;
            0    4     1        out  Ljava/nio/channels/GatheringByteChannel;
            0    4     2     length  I
            2    4     3  readBytes  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      out     
      length  

  public final int readBytes(java.nio.channels.FileChannel, long, int);
    descriptor: (Ljava/nio/channels/FileChannel;JI)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=6, args_size=4
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // java.nio.channels.FileChannel out
        start local 2 // long position
        start local 4 // int length
         0: .line 171
            aload 0 /* this */
            iload 4 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkReadableBytes:(I)V
         1: .line 172
            aload 0 /* this */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.readerIndex:I
            aload 1 /* out */
            lload 2 /* position */
            iload 4 /* length */
            iconst_1
            invokevirtual io.netty.buffer.PooledHeapByteBuf.getBytes:(ILjava/nio/channels/FileChannel;JIZ)I
            istore 5 /* readBytes */
        start local 5 // int readBytes
         2: .line 173
            aload 0 /* this */
            dup
            getfield io.netty.buffer.PooledHeapByteBuf.readerIndex:I
            iload 5 /* readBytes */
            iadd
            putfield io.netty.buffer.PooledHeapByteBuf.readerIndex:I
         3: .line 174
            iload 5 /* readBytes */
            ireturn
        end local 5 // int readBytes
        end local 4 // int length
        end local 2 // long position
        end local 1 // java.nio.channels.FileChannel out
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/netty/buffer/PooledHeapByteBuf;
            0    4     1        out  Ljava/nio/channels/FileChannel;
            0    4     2   position  J
            0    4     4     length  I
            2    4     5  readBytes  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      out       
      position  
      length    

  protected void _setByte(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 179
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setByte:([BII)V
         1: .line 180
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShort(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 184
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setShort:([BII)V
         1: .line 185
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShortLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 189
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setShortLE:([BII)V
         1: .line 190
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMedium(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 194
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setMedium:([BII)V
         1: .line 195
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMediumLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 199
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setMediumLE:([BII)V
         1: .line 200
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setInt(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 204
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setInt:([BII)V
         1: .line 205
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setIntLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 209
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setIntLE:([BII)V
         1: .line 210
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLong(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 214
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            lload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setLong:([BIJ)V
         1: .line 215
            return
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLongLE(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 219
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            lload 2 /* value */
            invokestatic io.netty.buffer.HeapByteBufUtil.setLongLE:([BIJ)V
         1: .line 220
            return
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public final io.netty.buffer.ByteBuf setBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 224
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            iload 3 /* srcIndex */
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.capacity:()I
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkSrcIndex:(IIII)V
         1: .line 225
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.hasMemoryAddress:()Z
            ifeq 4
         2: .line 226
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.memoryAddress:()J
            iload 3 /* srcIndex */
            i2l
            ladd
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 4 /* length */
            i2l
            invokestatic io.netty.util.internal.PlatformDependent.copyMemory:(J[BIJ)V
         3: .line 227
            goto 8
      StackMap locals:
      StackMap stack:
         4: aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.hasArray:()Z
            ifeq 7
         5: .line 228
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.array:()[B
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.arrayOffset:()I
            iload 3 /* srcIndex */
            iadd
            iload 4 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.setBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         6: .line 229
            goto 8
         7: .line 230
      StackMap locals:
      StackMap stack:
            aload 2 /* src */
            iload 3 /* srcIndex */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         8: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int srcIndex
        end local 2 // io.netty.buffer.ByteBuf src
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lio/netty/buffer/PooledHeapByteBuf;
            0    9     1     index  I
            0    9     2       src  Lio/netty/buffer/ByteBuf;
            0    9     3  srcIndex  I
            0    9     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public final io.netty.buffer.ByteBuf setBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // byte[] src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 237
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            iload 3 /* srcIndex */
            aload 2 /* src */
            arraylength
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkSrcIndex:(IIII)V
         1: .line 238
            aload 2 /* src */
            iload 3 /* srcIndex */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 4 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 239
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int srcIndex
        end local 2 // byte[] src
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/buffer/PooledHeapByteBuf;
            0    3     1     index  I
            0    3     2       src  [B
            0    3     3  srcIndex  I
            0    3     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public final io.netty.buffer.ByteBuf setBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer src
         0: .line 244
            aload 2 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 3 /* length */
        start local 3 // int length
         1: .line 245
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         2: .line 246
            aload 2 /* src */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 3 /* length */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
         3: .line 247
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // java.nio.ByteBuffer src
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    4     1   index  I
            0    4     2     src  Ljava/nio/ByteBuffer;
            1    4     3  length  I
    MethodParameters:
       Name  Flags
      index  
      src    

  public final int setBytes(int, java.io.InputStream, int);
    descriptor: (ILjava/io/InputStream;I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.io.InputStream in
        start local 3 // int length
         0: .line 252
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 253
            aload 2 /* in */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 3 /* length */
            invokevirtual java.io.InputStream.read:([BII)I
            ireturn
        end local 3 // int length
        end local 2 // java.io.InputStream in
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    2     1   index  I
            0    2     2      in  Ljava/io/InputStream;
            0    2     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public final int setBytes(int, java.nio.channels.ScatteringByteChannel, int);
    descriptor: (ILjava/nio/channels/ScatteringByteChannel;I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.ScatteringByteChannel in
        start local 3 // int length
         0: .line 258
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 259
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            istore 1 /* index */
         2: .line 261
            aload 2 /* in */
            aload 0 /* this */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            iload 1 /* index */
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            iload 1 /* index */
            iload 3 /* length */
            iadd
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            checkcast java.nio.ByteBuffer
            invokeinterface java.nio.channels.ScatteringByteChannel.read:(Ljava/nio/ByteBuffer;)I
         3: ireturn
         4: .line 262
      StackMap locals:
      StackMap stack: java.nio.channels.ClosedChannelException
            pop
         5: .line 263
            iconst_m1
            ireturn
        end local 3 // int length
        end local 2 // java.nio.channels.ScatteringByteChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    6     1   index  I
            0    6     2      in  Ljava/nio/channels/ScatteringByteChannel;
            0    6     3  length  I
      Exception table:
        from    to  target  type
           2     3       4  Class java.nio.channels.ClosedChannelException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public final int setBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=6, args_size=5
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel in
        start local 3 // long position
        start local 5 // int length
         0: .line 269
            aload 0 /* this */
            iload 1 /* index */
            iload 5 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 270
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            istore 1 /* index */
         2: .line 272
            aload 2 /* in */
            aload 0 /* this */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            iload 1 /* index */
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            iload 1 /* index */
            iload 5 /* length */
            iadd
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            checkcast java.nio.ByteBuffer
            lload 3 /* position */
            invokevirtual java.nio.channels.FileChannel.read:(Ljava/nio/ByteBuffer;J)I
         3: ireturn
         4: .line 273
      StackMap locals:
      StackMap stack: java.nio.channels.ClosedChannelException
            pop
         5: .line 274
            iconst_m1
            ireturn
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/netty/buffer/PooledHeapByteBuf;
            0    6     1     index  I
            0    6     2        in  Ljava/nio/channels/FileChannel;
            0    6     3  position  J
            0    6     5    length  I
      Exception table:
        from    to  target  type
           2     3       4  Class java.nio.channels.ClosedChannelException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      in        
      position  
      length    

  public final io.netty.buffer.ByteBuf copy(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 280
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 281
            aload 0 /* this */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
            iload 2 /* length */
            aload 0 /* this */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.maxCapacity:()I
            invokeinterface io.netty.buffer.ByteBufAllocator.heapBuffer:(II)Lio/netty/buffer/ByteBuf;
            astore 3 /* copy */
        start local 3 // io.netty.buffer.ByteBuf copy
         2: .line 282
            aload 3 /* copy */
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([BII)Lio/netty/buffer/ByteBuf;
            pop
         3: .line 283
            aload 3 /* copy */
            areturn
        end local 3 // io.netty.buffer.ByteBuf copy
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    4     1   index  I
            0    4     2  length  I
            2    4     3    copy  Lio/netty/buffer/ByteBuf;
    MethodParameters:
        Name  Flags
      index   
      length  

  public final int nioBufferCount();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
         0: .line 288
            iconst_1
            ireturn
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/PooledHeapByteBuf;

  public final java.nio.ByteBuffer[] nioBuffers(int, int);
    descriptor: (II)[Ljava/nio/ByteBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 293
            iconst_1
            anewarray java.nio.ByteBuffer
            dup
            iconst_0
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.nioBuffer:(II)Ljava/nio/ByteBuffer;
            aastore
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public final java.nio.ByteBuffer nioBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 298
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 299
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            istore 1 /* index */
         2: .line 300
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            iload 1 /* index */
            iload 2 /* length */
            invokestatic java.nio.ByteBuffer.wrap:([BII)Ljava/nio/ByteBuffer;
            astore 3 /* buf */
        start local 3 // java.nio.ByteBuffer buf
         3: .line 301
            aload 3 /* buf */
            invokevirtual java.nio.ByteBuffer.slice:()Ljava/nio/ByteBuffer;
            areturn
        end local 3 // java.nio.ByteBuffer buf
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    4     1   index  I
            0    4     2  length  I
            3    4     3     buf  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      index   
      length  

  public final java.nio.ByteBuffer internalNioBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 306
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.checkIndex:(II)V
         1: .line 307
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.idx:(I)I
            istore 1 /* index */
         2: .line 308
            aload 0 /* this */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            iload 1 /* index */
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            iload 1 /* index */
            iload 2 /* length */
            iadd
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            checkcast java.nio.ByteBuffer
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    3     1   index  I
            0    3     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public final boolean hasArray();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
         0: .line 313
            iconst_1
            ireturn
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/PooledHeapByteBuf;

  public final byte[] array();
    descriptor: ()[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
         0: .line 318
            aload 0 /* this */
            invokevirtual io.netty.buffer.PooledHeapByteBuf.ensureAccessible:()V
         1: .line 319
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.memory:Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/buffer/PooledHeapByteBuf;

  public final int arrayOffset();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
         0: .line 324
            aload 0 /* this */
            getfield io.netty.buffer.PooledHeapByteBuf.offset:I
            ireturn
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/PooledHeapByteBuf;

  public final boolean hasMemoryAddress();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
         0: .line 329
            iconst_0
            ireturn
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/PooledHeapByteBuf;

  public final long memoryAddress();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
         0: .line 334
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/PooledHeapByteBuf;

  protected final java.nio.ByteBuffer newInternalNioBuffer(byte[]);
    descriptor: ([B)Ljava/nio/ByteBuffer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.netty.buffer.PooledHeapByteBuf this
        start local 1 // byte[] memory
         0: .line 339
            aload 1 /* memory */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            areturn
        end local 1 // byte[] memory
        end local 0 // io.netty.buffer.PooledHeapByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/PooledHeapByteBuf;
            0    1     1  memory  [B
    MethodParameters:
        Name  Flags
      memory  

  protected java.nio.ByteBuffer newInternalNioBuffer(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/nio/ByteBuffer;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast byte[]
            invokevirtual io.netty.buffer.PooledHeapByteBuf.newInternalNioBuffer:([B)Ljava/nio/ByteBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lio/netty/buffer/PooledByteBuf<[B>;
SourceFile: "PooledHeapByteBuf.java"
NestMembers:
  io.netty.buffer.PooledHeapByteBuf$1
InnerClasses:
  io.netty.buffer.PooledHeapByteBuf$1
  public abstract Handle = io.netty.util.Recycler$Handle of io.netty.util.Recycler