public class org.eclipse.jetty.io.ByteBufferPool$Lease
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.io.ByteBufferPool$Lease
  super_class: java.lang.Object
{
  private final org.eclipse.jetty.io.ByteBufferPool byteBufferPool;
    descriptor: Lorg/eclipse/jetty/io/ByteBufferPool;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<java.nio.ByteBuffer> buffers;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/nio/ByteBuffer;>;

  private final java.util.List<java.lang.Boolean> recycles;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/Boolean;>;

  public void <init>(org.eclipse.jetty.io.ByteBufferPool);
    descriptor: (Lorg/eclipse/jetty/io/ByteBufferPool;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
        start local 1 // org.eclipse.jetty.io.ByteBufferPool byteBufferPool
         0: .line 78
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 80
            aload 0 /* this */
            aload 1 /* byteBufferPool */
            putfield org.eclipse.jetty.io.ByteBufferPool$Lease.byteBufferPool:Lorg/eclipse/jetty/io/ByteBufferPool;
         2: .line 81
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
         3: .line 82
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.jetty.io.ByteBufferPool$Lease.recycles:Ljava/util/List;
         4: .line 83
            return
        end local 1 // org.eclipse.jetty.io.ByteBufferPool byteBufferPool
        end local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lorg/eclipse/jetty/io/ByteBufferPool$Lease;
            0    5     1  byteBufferPool  Lorg/eclipse/jetty/io/ByteBufferPool;
    MethodParameters:
                Name  Flags
      byteBufferPool  

  public java.nio.ByteBuffer acquire(int, boolean);
    descriptor: (IZ)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
        start local 1 // int capacity
        start local 2 // boolean direct
         0: .line 87
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.byteBufferPool:Lorg/eclipse/jetty/io/ByteBufferPool;
            iload 1 /* capacity */
            iload 2 /* direct */
            invokeinterface org.eclipse.jetty.io.ByteBufferPool.acquire:(IZ)Ljava/nio/ByteBuffer;
            astore 3 /* buffer */
        start local 3 // java.nio.ByteBuffer buffer
         1: .line 88
            aload 3 /* buffer */
            invokestatic org.eclipse.jetty.util.BufferUtil.clearToFill:(Ljava/nio/ByteBuffer;)V
         2: .line 89
            aload 3 /* buffer */
            areturn
        end local 3 // java.nio.ByteBuffer buffer
        end local 2 // boolean direct
        end local 1 // int capacity
        end local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jetty/io/ByteBufferPool$Lease;
            0    3     1  capacity  I
            0    3     2    direct  Z
            1    3     3    buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
          Name  Flags
      capacity  
      direct    

  public void append(java.nio.ByteBuffer, boolean);
    descriptor: (Ljava/nio/ByteBuffer;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // boolean recycle
         0: .line 94
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
            aload 1 /* buffer */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 95
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.recycles:Ljava/util/List;
            iload 2 /* recycle */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 96
            return
        end local 2 // boolean recycle
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/eclipse/jetty/io/ByteBufferPool$Lease;
            0    3     1   buffer  Ljava/nio/ByteBuffer;
            0    3     2  recycle  Z
    MethodParameters:
         Name  Flags
      buffer   
      recycle  

  public void insert(int, java.nio.ByteBuffer, boolean);
    descriptor: (ILjava/nio/ByteBuffer;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer buffer
        start local 3 // boolean recycle
         0: .line 100
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
            iload 1 /* index */
            aload 2 /* buffer */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         1: .line 101
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.recycles:Ljava/util/List;
            iload 1 /* index */
            iload 3 /* recycle */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         2: .line 102
            return
        end local 3 // boolean recycle
        end local 2 // java.nio.ByteBuffer buffer
        end local 1 // int index
        end local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/eclipse/jetty/io/ByteBufferPool$Lease;
            0    3     1    index  I
            0    3     2   buffer  Ljava/nio/ByteBuffer;
            0    3     3  recycle  Z
    MethodParameters:
         Name  Flags
      index    
      buffer   
      recycle  

  public java.util.List<java.nio.ByteBuffer> getByteBuffers();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
         0: .line 106
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ByteBufferPool$Lease;
    Signature: ()Ljava/util/List<Ljava/nio/ByteBuffer;>;

  public long getTotalLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
         0: .line 111
            lconst_0
            lstore 1 /* length */
        start local 1 // long length
         1: .line 112
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.eclipse.jetty.io.ByteBufferPool$Lease long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.ByteBuffer
            astore 3 /* buffer */
        start local 3 // java.nio.ByteBuffer buffer
         3: .line 114
            lload 1 /* length */
            aload 3 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            i2l
            ladd
            lstore 1 /* length */
        end local 3 // java.nio.ByteBuffer buffer
         4: .line 112
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 116
            lload 1 /* length */
            lreturn
        end local 1 // long length
        end local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/jetty/io/ByteBufferPool$Lease;
            1    6     1  length  J
            3    4     3  buffer  Ljava/nio/ByteBuffer;

  public int getSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
         0: .line 121
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ByteBufferPool$Lease;

  public void recycle();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
         0: .line 126
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 6
         2: .line 128
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.nio.ByteBuffer
            astore 2 /* buffer */
        start local 2 // java.nio.ByteBuffer buffer
         3: .line 129
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.recycles:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 5
         4: .line 130
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.byteBufferPool:Lorg/eclipse/jetty/io/ByteBufferPool;
            aload 2 /* buffer */
            invokeinterface org.eclipse.jetty.io.ByteBufferPool.release:(Ljava/nio/ByteBuffer;)V
        end local 2 // java.nio.ByteBuffer buffer
         5: .line 126
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 1 /* i */
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 2
        end local 1 // int i
         7: .line 132
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.buffers:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         8: .line 133
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferPool$Lease.recycles:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         9: .line 134
            return
        end local 0 // org.eclipse.jetty.io.ByteBufferPool$Lease this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/eclipse/jetty/io/ByteBufferPool$Lease;
            1    7     1       i  I
            3    5     2  buffer  Ljava/nio/ByteBuffer;
}
SourceFile: "ByteBufferPool.java"
NestHost: org.eclipse.jetty.io.ByteBufferPool
InnerClasses:
  public Lease = org.eclipse.jetty.io.ByteBufferPool$Lease of org.eclipse.jetty.io.ByteBufferPool