class io.netty.buffer.ReadOnlyByteBufferBuf extends io.netty.buffer.AbstractReferenceCountedByteBuf
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.netty.buffer.ReadOnlyByteBufferBuf
  super_class: io.netty.buffer.AbstractReferenceCountedByteBuf
{
  protected final java.nio.ByteBuffer buffer;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private final io.netty.buffer.ByteBufAllocator allocator;
    descriptor: Lio/netty/buffer/ByteBufAllocator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  void <init>(io.netty.buffer.ByteBufAllocator, java.nio.ByteBuffer);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;Ljava/nio/ByteBuffer;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // io.netty.buffer.ByteBufAllocator allocator
        start local 2 // java.nio.ByteBuffer buffer
         0: .line 41
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokespecial io.netty.buffer.AbstractReferenceCountedByteBuf.<init>:(I)V
         1: .line 42
            aload 2 /* buffer */
            invokevirtual java.nio.ByteBuffer.isReadOnly:()Z
            ifne 3
         2: .line 43
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "must be a readonly buffer: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* buffer */
            invokestatic io.netty.util.internal.StringUtil.simpleClassName:(Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 46
      StackMap locals: io.netty.buffer.ReadOnlyByteBufferBuf io.netty.buffer.ByteBufAllocator java.nio.ByteBuffer
      StackMap stack:
            aload 0 /* this */
            aload 1 /* allocator */
            putfield io.netty.buffer.ReadOnlyByteBufferBuf.allocator:Lio/netty/buffer/ByteBufAllocator;
         4: .line 47
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual java.nio.ByteBuffer.slice:()Ljava/nio/ByteBuffer;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            putfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
         5: .line 48
            aload 0 /* this */
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.writerIndex:(I)Lio/netty/buffer/ByteBuf;
            pop
         6: .line 49
            return
        end local 2 // java.nio.ByteBuffer buffer
        end local 1 // io.netty.buffer.ByteBufAllocator allocator
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    7     1  allocator  Lio/netty/buffer/ByteBufAllocator;
            0    7     2     buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
           Name  Flags
      allocator  
      buffer     

  protected void deallocate();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 52
            return
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public boolean isWritable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 56
            iconst_0
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public boolean isWritable(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int numBytes
         0: .line 61
            iconst_0
            ireturn
        end local 1 // int numBytes
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  numBytes  I
    MethodParameters:
          Name  Flags
      numBytes  

  public io.netty.buffer.ByteBuf ensureWritable(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int minWritableBytes
         0: .line 66
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 1 // int minWritableBytes
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  minWritableBytes  I
    MethodParameters:
                  Name  Flags
      minWritableBytes  

  public int ensureWritable(int, boolean);
    descriptor: (IZ)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int minWritableBytes
        start local 2 // boolean force
         0: .line 71
            iconst_1
            ireturn
        end local 2 // boolean force
        end local 1 // int minWritableBytes
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  minWritableBytes  I
            0    1     2             force  Z
    MethodParameters:
                  Name  Flags
      minWritableBytes  
      force             

  public byte getByte(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 76
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 77
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getByte:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected byte _getByte(int);
    descriptor: (I)B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 82
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShort(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 87
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 88
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getShort:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShort(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 93
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            invokevirtual java.nio.ByteBuffer.getShort:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShortLE(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 98
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 99
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getShortLE:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShortLE(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 104
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            invokevirtual java.nio.ByteBuffer.getShort:(I)S
            invokestatic io.netty.buffer.ByteBufUtil.swapShort:(S)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 109
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 110
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getUnsignedMedium:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 115
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.getByte:(I)B
            sipush 255
            iand
            bipush 16
            ishl
         1: .line 116
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.getByte:(I)B
            sipush 255
            iand
            bipush 8
            ishl
         2: .line 115
            ior
         3: .line 117
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.getByte:(I)B
            sipush 255
            iand
         4: .line 115
            ior
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 122
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 123
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getUnsignedMediumLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 128
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.getByte:(I)B
            sipush 255
            iand
         1: .line 129
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.getByte:(I)B
            sipush 255
            iand
            bipush 8
            ishl
         2: .line 128
            ior
         3: .line 130
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            iadd
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.getByte:(I)B
            sipush 255
            iand
            bipush 16
            ishl
         4: .line 128
            ior
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 135
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 136
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getInt(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 141
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getIntLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 146
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 147
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getIntLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getIntLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 152
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            invokestatic io.netty.buffer.ByteBufUtil.swapInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLong(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 157
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 158
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getLong:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLong(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 163
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            invokevirtual java.nio.ByteBuffer.getLong:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLongLE(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 168
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 169
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf._getLongLE:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLongLE(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
         0: .line 174
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            iload 1 /* index */
            invokevirtual java.nio.ByteBuffer.getLong:(I)J
            invokestatic io.netty.buffer.ByteBufUtil.swapLong:(J)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public io.netty.buffer.ByteBuf getBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf 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 179
            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.ReadOnlyByteBufferBuf.checkDstIndex:(IIII)V
         1: .line 180
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.hasArray:()Z
            ifeq 4
         2: .line 181
            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.ReadOnlyByteBufferBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         3: .line 182
            goto 14
      StackMap locals:
      StackMap stack:
         4: aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            ifle 13
         5: .line 183
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffers:(II)[Ljava/nio/ByteBuffer;
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 11
      StackMap locals: io.netty.buffer.ReadOnlyByteBufferBuf int io.netty.buffer.ByteBuf int int top int int java.nio.ByteBuffer[]
      StackMap stack:
         6: aload 8
            iload 6
            aaload
            astore 5 /* bb */
        start local 5 // java.nio.ByteBuffer bb
         7: .line 184
            aload 5 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 9 /* bbLen */
        start local 9 // int bbLen
         8: .line 185
            aload 0 /* this */
            iload 1 /* index */
            aload 5 /* bb */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.getBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         9: .line 186
            iload 1 /* index */
            iload 9 /* bbLen */
            iadd
            istore 1 /* index */
        end local 9 // int bbLen
        end local 5 // java.nio.ByteBuffer bb
        10: .line 183
            iinc 6 1
      StackMap locals:
      StackMap stack:
        11: iload 6
            iload 7
            if_icmplt 6
        12: .line 188
            goto 14
        13: .line 189
      StackMap locals: io.netty.buffer.ReadOnlyByteBufferBuf int io.netty.buffer.ByteBuf int int
      StackMap stack:
            aload 2 /* dst */
            iload 3 /* dstIndex */
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
        14: .line 191
      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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0   15     1     index  I
            0   15     2       dst  Lio/netty/buffer/ByteBuf;
            0   15     3  dstIndex  I
            0   15     4    length  I
            7   10     5        bb  Ljava/nio/ByteBuffer;
            8   10     9     bbLen  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // byte[] dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 196
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            iload 3 /* dstIndex */
            aload 2 /* dst */
            arraylength
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.checkDstIndex:(IIII)V
         1: .line 198
            iload 3 /* dstIndex */
            iflt 2
            iload 3 /* dstIndex */
            aload 2 /* dst */
            arraylength
            iload 4 /* length */
            isub
            if_icmple 5
         2: .line 199
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
         3: .line 200
            ldc "dstIndex: %d, length: %d (expected: range(0, %d))"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            iload 3 /* dstIndex */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 4 /* length */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 2 /* dst */
            arraylength
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         4: .line 199
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            astore 5 /* tmpBuf */
        start local 5 // java.nio.ByteBuffer tmpBuf
         6: .line 204
            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 4 /* length */
            iadd
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
         7: .line 205
            aload 5 /* tmpBuf */
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
         8: .line 206
            aload 0 /* this */
            areturn
        end local 5 // java.nio.ByteBuffer tmpBuf
        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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    9     1     index  I
            0    9     2       dst  [B
            0    9     3  dstIndex  I
            0    9     4    length  I
            6    9     5    tmpBuf  Ljava/nio/ByteBuffer;
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer dst
         0: .line 211
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.checkIndex:(I)V
         1: .line 212
            aload 2 /* dst */
            ifnonnull 3
         2: .line 213
            new java.lang.NullPointerException
            dup
            ldc "dst"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.capacity:()I
            iload 1 /* index */
            isub
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* bytesToCopy */
        start local 3 // int bytesToCopy
         4: .line 217
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            astore 4 /* tmpBuf */
        start local 4 // java.nio.ByteBuffer tmpBuf
         5: .line 218
            aload 4 /* 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 /* bytesToCopy */
            iadd
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
         6: .line 219
            aload 2 /* dst */
            aload 4 /* tmpBuf */
            invokevirtual java.nio.ByteBuffer.put:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            pop
         7: .line 220
            aload 0 /* this */
            areturn
        end local 4 // java.nio.ByteBuffer tmpBuf
        end local 3 // int bytesToCopy
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    8     1        index  I
            0    8     2          dst  Ljava/nio/ByteBuffer;
            4    8     3  bytesToCopy  I
            5    8     4       tmpBuf  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      dst    

  public io.netty.buffer.ByteBuf setByte(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 225
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setByte(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 230
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShort(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 235
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShort(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 240
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShortLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 245
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShortLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 250
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMedium(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 255
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMedium(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 260
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMediumLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 265
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMediumLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 270
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setInt(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 275
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setInt(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 280
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setIntLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 285
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setIntLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 290
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLong(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 295
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLong(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 300
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLongLE(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 305
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLongLE(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 310
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public int capacity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 315
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.maxCapacity:()I
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public io.netty.buffer.ByteBuf capacity(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int newCapacity
         0: .line 320
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 1 // int newCapacity
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  newCapacity  I
    MethodParameters:
             Name  Flags
      newCapacity  

  public io.netty.buffer.ByteBufAllocator alloc();
    descriptor: ()Lio/netty/buffer/ByteBufAllocator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 325
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.allocator:Lio/netty/buffer/ByteBufAllocator;
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public java.nio.ByteOrder order();
    descriptor: ()Ljava/nio/ByteOrder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 330
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public io.netty.buffer.ByteBuf unwrap();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 335
            aconst_null
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 340
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.isReadOnly:()Z
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public boolean isDirect();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 345
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.isDirect:()Z
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public io.netty.buffer.ByteBuf getBytes(int, java.io.OutputStream, int);
    descriptor: (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // java.io.OutputStream out
        start local 3 // int length
         0: .line 350
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 351
            iload 3 /* length */
            ifne 3
         2: .line 352
            aload 0 /* this */
            areturn
         3: .line 355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 6
         4: .line 356
            aload 2 /* out */
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            iload 1 /* index */
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            iload 3 /* length */
            invokevirtual java.io.OutputStream.write:([BII)V
         5: .line 357
            goto 11
         6: .line 358
      StackMap locals:
      StackMap stack:
            iload 3 /* length */
            newarray 8
            astore 4 /* tmp */
        start local 4 // byte[] tmp
         7: .line 359
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            astore 5 /* tmpBuf */
        start local 5 // java.nio.ByteBuffer tmpBuf
         8: .line 360
            aload 5 /* tmpBuf */
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            iload 1 /* index */
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
         9: .line 361
            aload 5 /* tmpBuf */
            aload 4 /* tmp */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        10: .line 362
            aload 2 /* out */
            aload 4 /* tmp */
            invokevirtual java.io.OutputStream.write:([B)V
        end local 5 // java.nio.ByteBuffer tmpBuf
        end local 4 // byte[] tmp
        11: .line 364
      StackMap locals:
      StackMap stack:
            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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0   12     1   index  I
            0   12     2     out  Ljava/io/OutputStream;
            0   12     3  length  I
            7   11     4     tmp  [B
            8   11     5  tmpBuf  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public int getBytes(int, java.nio.channels.GatheringByteChannel, int);
    descriptor: (ILjava/nio/channels/GatheringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.GatheringByteChannel out
        start local 3 // int length
         0: .line 369
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 370
            iload 3 /* length */
            ifne 3
         2: .line 371
            iconst_0
            ireturn
         3: .line 374
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            astore 4 /* tmpBuf */
        start local 4 // java.nio.ByteBuffer tmpBuf
         4: .line 375
            aload 4 /* 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;
            pop
         5: .line 376
            aload 2 /* out */
            aload 4 /* tmpBuf */
            invokeinterface java.nio.channels.GatheringByteChannel.write:(Ljava/nio/ByteBuffer;)I
            ireturn
        end local 4 // java.nio.ByteBuffer tmpBuf
        end local 3 // int length
        end local 2 // java.nio.channels.GatheringByteChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    6     1   index  I
            0    6     2     out  Ljava/nio/channels/GatheringByteChannel;
            0    6     3  length  I
            4    6     4  tmpBuf  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public int getBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf 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 381
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 382
            iload 5 /* length */
            ifne 3
         2: .line 383
            iconst_0
            ireturn
         3: .line 386
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.internalNioBuffer:()Ljava/nio/ByteBuffer;
            astore 6 /* tmpBuf */
        start local 6 // java.nio.ByteBuffer tmpBuf
         4: .line 387
            aload 6 /* 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;
            pop
         5: .line 388
            aload 2 /* out */
            aload 6 /* tmpBuf */
            lload 3 /* position */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;J)I
            ireturn
        end local 6 // java.nio.ByteBuffer tmpBuf
        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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    6     1     index  I
            0    6     2       out  Ljava/nio/channels/FileChannel;
            0    6     3  position  J
            0    6     5    length  I
            4    6     6    tmpBuf  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      out       
      position  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf 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 393
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1     index  I
            0    1     2       src  Lio/netty/buffer/ByteBuf;
            0    1     3  srcIndex  I
            0    1     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // byte[] src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 398
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1     index  I
            0    1     2       src  [B
            0    1     3  srcIndex  I
            0    1     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer src
         0: .line 403
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // java.nio.ByteBuffer src
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1  index  I
            0    1     2    src  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      src    

  public int setBytes(int, java.io.InputStream, int);
    descriptor: (ILjava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // java.io.InputStream in
        start local 3 // int length
         0: .line 408
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 3 // int length
        end local 2 // java.io.InputStream in
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1   index  I
            0    1     2      in  Ljava/io/InputStream;
            0    1     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public int setBytes(int, java.nio.channels.ScatteringByteChannel, int);
    descriptor: (ILjava/nio/channels/ScatteringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.ScatteringByteChannel in
        start local 3 // int length
         0: .line 413
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 3 // int length
        end local 2 // java.nio.channels.ScatteringByteChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1   index  I
            0    1     2      in  Ljava/nio/channels/ScatteringByteChannel;
            0    1     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public int setBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf 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 418
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1     index  I
            0    1     2        in  Ljava/nio/channels/FileChannel;
            0    1     3  position  J
            0    1     5    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      in        
      position  
      length    

  protected final java.nio.ByteBuffer internalNioBuffer();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 422
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.tmpNioBuf:Ljava/nio/ByteBuffer;
            astore 1 /* tmpNioBuf */
        start local 1 // java.nio.ByteBuffer tmpNioBuf
         1: .line 423
            aload 1 /* tmpNioBuf */
            ifnonnull 3
         2: .line 424
            aload 0 /* this */
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            dup
            astore 1 /* tmpNioBuf */
            putfield io.netty.buffer.ReadOnlyByteBufferBuf.tmpNioBuf:Ljava/nio/ByteBuffer;
         3: .line 426
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            aload 1 /* tmpNioBuf */
            areturn
        end local 1 // java.nio.ByteBuffer tmpNioBuf
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            1    4     1  tmpNioBuf  Ljava/nio/ByteBuffer;

  public io.netty.buffer.ByteBuf copy(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 431
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 434
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.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
            astore 3 /* src */
        start local 3 // java.nio.ByteBuffer src
         2: .line 435
            goto 5
        end local 3 // java.nio.ByteBuffer src
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
         3: pop
         4: .line 436
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Too many bytes to read - Need "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            iload 2 /* length */
            iadd
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        start local 3 // java.nio.ByteBuffer src
         5: .line 439
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            aload 3 /* src */
            invokevirtual java.nio.ByteBuffer.isDirect:()Z
            ifeq 6
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
            iload 2 /* length */
            invokeinterface io.netty.buffer.ByteBufAllocator.directBuffer:(I)Lio/netty/buffer/ByteBuf;
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
            iload 2 /* length */
            invokeinterface io.netty.buffer.ByteBufAllocator.heapBuffer:(I)Lio/netty/buffer/ByteBuf;
      StackMap locals:
      StackMap stack: io.netty.buffer.ByteBuf
         7: astore 4 /* dst */
        start local 4 // io.netty.buffer.ByteBuf dst
         8: .line 440
            aload 4 /* dst */
            aload 3 /* src */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         9: .line 441
            aload 4 /* dst */
            areturn
        end local 4 // io.netty.buffer.ByteBuf dst
        end local 3 // java.nio.ByteBuffer src
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0   10     1   index  I
            0   10     2  length  I
            2    3     3     src  Ljava/nio/ByteBuffer;
            5   10     3     src  Ljava/nio/ByteBuffer;
            8   10     4     dst  Lio/netty/buffer/ByteBuf;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.IllegalArgumentException
    MethodParameters:
        Name  Flags
      index   
      length  

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

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

  public java.nio.ByteBuffer nioBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 456
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            iload 1 /* index */
            invokevirtual java.nio.ByteBuffer.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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public java.nio.ByteBuffer internalNioBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 461
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.ensureAccessible:()V
         1: .line 462
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBufferBuf.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.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/ReadOnlyByteBufferBuf;
            0    2     1   index  I
            0    2     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public boolean hasArray();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 467
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public byte[] array();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 472
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

  public int arrayOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
         0: .line 477
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBufferBuf.buffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBufferBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBufferBuf;

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

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