final class sun.rmi.transport.tcp.MultiplexOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.rmi.transport.tcp.MultiplexOutputStream
  super_class: java.io.OutputStream
{
  private sun.rmi.transport.tcp.ConnectionMultiplexer manager;
    descriptor: Lsun/rmi/transport/tcp/ConnectionMultiplexer;
    flags: (0x0002) ACC_PRIVATE

  private sun.rmi.transport.tcp.MultiplexConnectionInfo info;
    descriptor: Lsun/rmi/transport/tcp/MultiplexConnectionInfo;
    flags: (0x0002) ACC_PRIVATE

  private byte[] buffer;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int pos;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int requested;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean disconnected;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object lock;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  void <init>(sun.rmi.transport.tcp.ConnectionMultiplexer, sun.rmi.transport.tcp.MultiplexConnectionInfo, int);
    descriptor: (Lsun/rmi/transport/tcp/ConnectionMultiplexer;Lsun/rmi/transport/tcp/MultiplexConnectionInfo;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
        start local 1 // sun.rmi.transport.tcp.ConnectionMultiplexer manager
        start local 2 // sun.rmi.transport.tcp.MultiplexConnectionInfo info
        start local 3 // int bufferLength
         0: .line 79
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 54
            aload 0 /* this */
            iconst_0
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
         2: .line 57
            aload 0 /* this */
            iconst_0
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
         3: .line 60
            aload 0 /* this */
            iconst_0
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.disconnected:Z
         4: .line 71
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
         5: .line 84
            aload 0 /* this */
            aload 1 /* manager */
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.manager:Lsun/rmi/transport/tcp/ConnectionMultiplexer;
         6: .line 85
            aload 0 /* this */
            aload 2 /* info */
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.info:Lsun/rmi/transport/tcp/MultiplexConnectionInfo;
         7: .line 87
            aload 0 /* this */
            iload 3 /* bufferLength */
            newarray 8
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
         8: .line 88
            aload 0 /* this */
            iconst_0
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
         9: .line 89
            return
        end local 3 // int bufferLength
        end local 2 // sun.rmi.transport.tcp.MultiplexConnectionInfo info
        end local 1 // sun.rmi.transport.tcp.ConnectionMultiplexer manager
        end local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0          this  Lsun/rmi/transport/tcp/MultiplexOutputStream;
            0   10     1       manager  Lsun/rmi/transport/tcp/ConnectionMultiplexer;
            0   10     2          info  Lsun/rmi/transport/tcp/MultiplexConnectionInfo;
            0   10     3  bufferLength  I
    MethodParameters:
              Name  Flags
      manager       
      info          
      bufferLength  

  public synchronized void write(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
        start local 1 // int b
         0: .line 97
            goto 2
         1: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.rmi.transport.tcp.MultiplexOutputStream.push:()V
         2: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
            arraylength
            if_icmpge 1
         3: .line 99
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
            aload 0 /* this */
            dup
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            iload 1 /* b */
            i2b
            bastore
         4: .line 100
            return
        end local 1 // int b
        end local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/rmi/transport/tcp/MultiplexOutputStream;
            0    5     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public synchronized void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 111
            iload 3 /* len */
            ifgt 2
         1: .line 112
            return
         2: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
            arraylength
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            isub
            istore 4 /* freeSpace */
        start local 4 // int freeSpace
         3: .line 116
            iload 3 /* len */
            iload 4 /* freeSpace */
            if_icmpgt 7
         4: .line 117
            aload 1 /* b */
            iload 2 /* off */
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 118
            aload 0 /* this */
            dup
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            iload 3 /* len */
            iadd
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
         6: .line 119
            return
         7: .line 123
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.rmi.transport.tcp.MultiplexOutputStream.flush:()V
         8: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            dup
            astore 6
            monitorenter
         9: .line 127
            goto 13
        start local 5 // int local_requested
        10: .line 129
      StackMap locals: int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            invokevirtual java.lang.Object.wait:()V
        11: .line 130
            goto 13
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
        12: pop
        end local 5 // int local_requested
        13: .line 127
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream byte[] int int int top java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
            dup
            istore 5 /* local_requested */
        start local 5 // int local_requested
        14: iconst_1
            if_icmpge 15
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.disconnected:Z
            ifeq 10
        15: .line 133
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream byte[] int int int int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.disconnected:Z
            ifeq 17
        16: .line 134
            new java.io.IOException
            dup
            ldc "Connection closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 126
      StackMap locals:
      StackMap stack:
            aload 6
            monitorexit
        18: goto 21
        end local 5 // int local_requested
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream byte[] int int int top java.lang.Object
      StackMap stack: java.lang.Throwable
        19: aload 6
            monitorexit
        20: athrow
        start local 5 // int local_requested
        21: .line 137
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream byte[] int int int int
      StackMap stack:
            iload 5 /* local_requested */
            iload 3 /* len */
            if_icmpge 31
        22: .line 138
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.manager:Lsun/rmi/transport/tcp/ConnectionMultiplexer;
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.info:Lsun/rmi/transport/tcp/MultiplexConnectionInfo;
            aload 1 /* b */
            iload 2 /* off */
            iload 5 /* local_requested */
            invokevirtual sun.rmi.transport.tcp.ConnectionMultiplexer.sendTransmit:(Lsun/rmi/transport/tcp/MultiplexConnectionInfo;[BII)V
        23: .line 139
            iload 2 /* off */
            iload 5 /* local_requested */
            iadd
            istore 2 /* off */
        24: .line 140
            iload 3 /* len */
            iload 5 /* local_requested */
            isub
            istore 3 /* len */
        25: .line 141
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            dup
            astore 6
            monitorenter
        26: .line 142
            aload 0 /* this */
            dup
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
            iload 5 /* local_requested */
            isub
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
        27: .line 141
            aload 6
            monitorexit
        28: goto 8
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream byte[] int int int int java.lang.Object
      StackMap stack: java.lang.Throwable
        29: aload 6
            monitorexit
        30: athrow
        31: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.manager:Lsun/rmi/transport/tcp/ConnectionMultiplexer;
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.info:Lsun/rmi/transport/tcp/MultiplexConnectionInfo;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual sun.rmi.transport.tcp.ConnectionMultiplexer.sendTransmit:(Lsun/rmi/transport/tcp/MultiplexConnectionInfo;[BII)V
        32: .line 147
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            dup
            astore 6
            monitorenter
        33: .line 148
            aload 0 /* this */
            dup
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
            iload 3 /* len */
            isub
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
        34: .line 147
            aload 6
            monitorexit
        35: goto 38
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream byte[] int int int int java.lang.Object
      StackMap stack: java.lang.Throwable
        36: aload 6
            monitorexit
        37: athrow
        38: .line 154
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int local_requested
        end local 4 // int freeSpace
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   39     0             this  Lsun/rmi/transport/tcp/MultiplexOutputStream;
            0   39     1                b  [B
            0   39     2              off  I
            0   39     3              len  I
            3   39     4        freeSpace  I
           10   13     5  local_requested  I
           14   19     5  local_requested  I
           21   39     5  local_requested  I
      Exception table:
        from    to  target  type
          10    11      12  Class java.lang.InterruptedException
           9    18      19  any
          19    20      19  any
          26    28      29  any
          29    30      29  any
          33    35      36  any
          36    37      36  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized void flush();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
         0: .line 161
            goto 2
         1: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.rmi.transport.tcp.MultiplexOutputStream.push:()V
         2: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            ifgt 1
         3: .line 163
            return
        end local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/rmi/transport/tcp/MultiplexOutputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
         0: .line 170
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.manager:Lsun/rmi/transport/tcp/ConnectionMultiplexer;
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.info:Lsun/rmi/transport/tcp/MultiplexConnectionInfo;
            invokevirtual sun.rmi.transport.tcp.ConnectionMultiplexer.sendClose:(Lsun/rmi/transport/tcp/MultiplexConnectionInfo;)V
         1: .line 171
            return
        end local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/rmi/transport/tcp/MultiplexOutputStream;
    Exceptions:
      throws java.io.IOException

  void request(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
        start local 1 // int num
         0: .line 179
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 180
            aload 0 /* this */
            dup
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
            iload 1 /* num */
            iadd
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
         2: .line 181
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            invokevirtual java.lang.Object.notifyAll:()V
         3: .line 179
            aload 2
            monitorexit
         4: goto 7
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream int java.lang.Object
      StackMap stack: java.lang.Throwable
         5: aload 2
            monitorexit
         6: athrow
         7: .line 183
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int num
        end local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/rmi/transport/tcp/MultiplexOutputStream;
            0    8     1   num  I
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
      Name  Flags
      num   

  void disconnect();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
         0: .line 190
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 191
            aload 0 /* this */
            iconst_1
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.disconnected:Z
         2: .line 192
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            invokevirtual java.lang.Object.notifyAll:()V
         3: .line 190
            aload 1
            monitorexit
         4: goto 7
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream java.lang.Object
      StackMap stack: java.lang.Throwable
         5: aload 1
            monitorexit
         6: athrow
         7: .line 194
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/rmi/transport/tcp/MultiplexOutputStream;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  private void push();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
         0: .line 203
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 204
            goto 5
        start local 1 // int local_requested
         2: .line 206
      StackMap locals: int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            invokevirtual java.lang.Object.wait:()V
         3: .line 207
            goto 5
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
         4: pop
        end local 1 // int local_requested
         5: .line 204
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream top java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
            dup
            istore 1 /* local_requested */
        start local 1 // int local_requested
         6: iconst_1
            if_icmpge 7
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.disconnected:Z
            ifeq 2
         7: .line 210
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.disconnected:Z
            ifeq 9
         8: .line 211
            new java.io.IOException
            dup
            ldc "Connection closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 203
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        10: goto 13
        end local 1 // int local_requested
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream top java.lang.Object
      StackMap stack: java.lang.Throwable
        11: aload 2
            monitorexit
        12: athrow
        start local 1 // int local_requested
        13: .line 214
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream int
      StackMap stack:
            iload 1 /* local_requested */
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            if_icmpge 25
        14: .line 215
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.manager:Lsun/rmi/transport/tcp/ConnectionMultiplexer;
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.info:Lsun/rmi/transport/tcp/MultiplexConnectionInfo;
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
            iconst_0
            iload 1 /* local_requested */
            invokevirtual sun.rmi.transport.tcp.ConnectionMultiplexer.sendTransmit:(Lsun/rmi/transport/tcp/MultiplexConnectionInfo;[BII)V
        15: .line 216
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
            iload 1 /* local_requested */
        16: .line 217
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            iload 1 /* local_requested */
            isub
        17: .line 216
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 218
            aload 0 /* this */
            dup
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            iload 1 /* local_requested */
            isub
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
        19: .line 219
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
        20: .line 220
            aload 0 /* this */
            dup
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
            iload 1 /* local_requested */
            isub
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
        21: .line 219
            aload 2
            monitorexit
        22: goto 33
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream int java.lang.Object
      StackMap stack: java.lang.Throwable
        23: aload 2
            monitorexit
        24: athrow
        25: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.manager:Lsun/rmi/transport/tcp/ConnectionMultiplexer;
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.info:Lsun/rmi/transport/tcp/MultiplexConnectionInfo;
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            invokevirtual sun.rmi.transport.tcp.ConnectionMultiplexer.sendTransmit:(Lsun/rmi/transport/tcp/MultiplexConnectionInfo;[BII)V
        26: .line 225
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
        27: .line 226
            aload 0 /* this */
            dup
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
            aload 0 /* this */
            getfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
            isub
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.requested:I
        28: .line 225
            aload 2
            monitorexit
        29: goto 32
      StackMap locals: sun.rmi.transport.tcp.MultiplexOutputStream int java.lang.Object
      StackMap stack: java.lang.Throwable
        30: aload 2
            monitorexit
        31: athrow
        32: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.rmi.transport.tcp.MultiplexOutputStream.pos:I
        33: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int local_requested
        end local 0 // sun.rmi.transport.tcp.MultiplexOutputStream this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   34     0             this  Lsun/rmi/transport/tcp/MultiplexOutputStream;
            2    5     1  local_requested  I
            6   11     1  local_requested  I
           13   34     1  local_requested  I
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.InterruptedException
           1    10      11  any
          11    12      11  any
          20    22      23  any
          23    24      23  any
          27    29      30  any
          30    31      30  any
    Exceptions:
      throws java.io.IOException
}
SourceFile: "MultiplexOutputStream.java"