public class org.eclipse.jetty.io.ByteBufferOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.io.ByteBufferOutputStream
  super_class: java.io.OutputStream
{
  final java.nio.ByteBuffer _buffer;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0010) ACC_FINAL

  public void <init>(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 35
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* buffer */
            putfield org.eclipse.jetty.io.ByteBufferOutputStream._buffer:Ljava/nio/ByteBuffer;
         2: .line 38
            return
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jetty/io/ByteBufferOutputStream;
            0    3     1  buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      buffer  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
         0: .line 42
            return
        end local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ByteBufferOutputStream;

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
         0: .line 46
            return
        end local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/io/ByteBufferOutputStream;

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
        start local 1 // byte[] b
         0: .line 50
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual org.eclipse.jetty.io.ByteBufferOutputStream.write:([BII)V
         1: .line 51
            return
        end local 1 // byte[] b
        end local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/io/ByteBufferOutputStream;
            0    2     1     b  [B
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 55
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferOutputStream._buffer:Ljava/nio/ByteBuffer;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokestatic org.eclipse.jetty.util.BufferUtil.append:(Ljava/nio/ByteBuffer;[BII)V
         1: .line 56
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/io/ByteBufferOutputStream;
            0    2     1     b  [B
            0    2     2   off  I
            0    2     3   len  I
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
        start local 1 // int b
         0: .line 60
            aload 0 /* this */
            getfield org.eclipse.jetty.io.ByteBufferOutputStream._buffer:Ljava/nio/ByteBuffer;
            iload 1 /* b */
            i2b
            invokestatic org.eclipse.jetty.util.BufferUtil.append:(Ljava/nio/ByteBuffer;B)V
         1: .line 61
            return
        end local 1 // int b
        end local 0 // org.eclipse.jetty.io.ByteBufferOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/io/ByteBufferOutputStream;
            0    2     1     b  I
    MethodParameters:
      Name  Flags
      b     
}
SourceFile: "ByteBufferOutputStream.java"