class sun.nio.ch.UnixDomainSocketChannelImpl extends java.nio.channels.spi.AbstractInterruptibleChannel implements java.nio.channels.ByteChannel
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.nio.ch.UnixDomainSocketChannelImpl
  super_class: java.nio.channels.spi.AbstractInterruptibleChannel
{
  private static final sun.nio.ch.NativeDispatcher nd;
    descriptor: Lsun/nio/ch/NativeDispatcher;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.io.FileDescriptor fd;
    descriptor: Ljava/io/FileDescriptor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.locks.ReentrantLock readLock;
    descriptor: Ljava/util/concurrent/locks/ReentrantLock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.locks.ReentrantLock writeLock;
    descriptor: Ljava/util/concurrent/locks/ReentrantLock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Object stateLock;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final int ST_INUSE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final int ST_CLOSING;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int ST_CLOSED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

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

  private long readerThread;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long writerThread;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 41
            ldc Lsun/nio/ch/UnixDomainSocketChannelImpl;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic sun.nio.ch.UnixDomainSocketChannelImpl.$assertionsDisabled:Z
         3: .line 46
            new sun.nio.ch.SocketDispatcher
            dup
            invokespecial sun.nio.ch.SocketDispatcher.<init>:()V
            putstatic sun.nio.ch.UnixDomainSocketChannelImpl.nd:Lsun/nio/ch/NativeDispatcher;
         4: .line 62
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
        start local 1 // java.io.FileDescriptor fd
         0: .line 69
            aload 0 /* this */
            invokespecial java.nio.channels.spi.AbstractInterruptibleChannel.<init>:()V
         1: .line 51
            aload 0 /* this */
            new java.util.concurrent.locks.ReentrantLock
            dup
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.readLock:Ljava/util/concurrent/locks/ReentrantLock;
         2: .line 54
            aload 0 /* this */
            new java.util.concurrent.locks.ReentrantLock
            dup
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.writeLock:Ljava/util/concurrent/locks/ReentrantLock;
         3: .line 57
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.stateLock:Ljava/lang/Object;
         4: .line 72
            aload 0 /* this */
            aload 1 /* fd */
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.fd:Ljava/io/FileDescriptor;
         5: .line 73
            return
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
            0    6     1    fd  Ljava/io/FileDescriptor;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  private void ensureOpen();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
         0: .line 81
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.isOpen:()Z
            ifne 2
         1: .line 82
            new java.nio.channels.ClosedChannelException
            dup
            invokespecial java.nio.channels.ClosedChannelException.<init>:()V
            athrow
         2: .line 83
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
    Exceptions:
      throws java.nio.channels.ClosedChannelException

  private boolean tryClose();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
         0: .line 89
            getstatic sun.nio.ch.UnixDomainSocketChannelImpl.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.stateLock:Ljava/lang/Object;
            invokestatic java.lang.Thread.holdsLock:(Ljava/lang/Object;)Z
            ifeq 1
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.state:I
            iconst_1
            if_icmpeq 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.readerThread:J
            lconst_0
            lcmp
            ifne 6
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.writerThread:J
            lconst_0
            lcmp
            ifne 6
         3: .line 91
            aload 0 /* this */
            iconst_2
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.state:I
         4: .line 92
            getstatic sun.nio.ch.UnixDomainSocketChannelImpl.nd:Lsun/nio/ch/NativeDispatcher;
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.fd:Ljava/io/FileDescriptor;
            invokevirtual sun.nio.ch.NativeDispatcher.close:(Ljava/io/FileDescriptor;)V
         5: .line 93
            iconst_1
            ireturn
         6: .line 95
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
    Exceptions:
      throws java.io.IOException

  private void tryFinishClose();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
         0: .line 104
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.tryClose:()Z
            pop
         1: .line 105
            goto 3
      StackMap locals:
      StackMap stack: java.io.IOException
         2: pop
         3: .line 106
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException

  private void beginRead();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
         0: .line 116
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.begin:()V
         1: .line 117
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.stateLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         2: .line 118
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.ensureOpen:()V
         3: .line 119
            aload 0 /* this */
            invokestatic sun.nio.ch.NativeThread.current:()J
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.readerThread:J
         4: .line 117
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 121
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
      Exception table:
        from    to  target  type
           2     5       6  any
           6     7       6  any
    Exceptions:
      throws java.nio.channels.ClosedChannelException

  private void endRead(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
        start local 1 // boolean completed
         0: .line 132
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.stateLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 133
            aload 0 /* this */
            lconst_0
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.readerThread:J
         2: .line 134
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.state:I
            iconst_1
            if_icmpne 4
         3: .line 135
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.tryFinishClose:()V
         4: .line 132
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2
            monitorexit
         5: goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
         8: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* completed */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.end:(Z)V
         9: .line 139
            return
        end local 1 // boolean completed
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
            0   10     1  completed  Z
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Exceptions:
      throws java.nio.channels.AsynchronousCloseException
    MethodParameters:
           Name  Flags
      completed  

  public int read(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
        start local 1 // java.nio.ByteBuffer buf
         0: .line 143
            aload 1 /* buf */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 145
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.readLock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         2: .line 147
            iconst_0
            istore 2 /* n */
        start local 2 // int n
         3: .line 149
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.beginRead:()V
         4: .line 150
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.fd:Ljava/io/FileDescriptor;
            aload 1 /* buf */
            ldc -1
            getstatic sun.nio.ch.UnixDomainSocketChannelImpl.nd:Lsun/nio/ch/NativeDispatcher;
            invokestatic sun.nio.ch.IOUtil.read:(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;JLsun/nio/ch/NativeDispatcher;)I
            istore 2 /* n */
         5: .line 151
            goto 8
         6: .line 152
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getstatic sun.nio.ch.Net.POLLIN:S
            lconst_0
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.park:(IJ)V
         7: .line 153
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.fd:Ljava/io/FileDescriptor;
            aload 1 /* buf */
            ldc -1
            getstatic sun.nio.ch.UnixDomainSocketChannelImpl.nd:Lsun/nio/ch/NativeDispatcher;
            invokestatic sun.nio.ch.IOUtil.read:(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;JLsun/nio/ch/NativeDispatcher;)I
            istore 2 /* n */
         8: .line 151
      StackMap locals:
      StackMap stack:
            iload 2 /* n */
            i2l
            invokestatic sun.nio.ch.IOStatus.okayToRetry:(J)Z
            ifeq 15
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.isOpen:()Z
            ifne 6
         9: .line 155
            goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 3
        11: .line 156
            aload 0 /* this */
            iload 2 /* n */
            ifle 12
            iconst_1
            goto 13
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.nio.ByteBuffer int java.lang.Throwable
      StackMap stack: sun.nio.ch.UnixDomainSocketChannelImpl
        12: iconst_0
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.nio.ByteBuffer int java.lang.Throwable
      StackMap stack: sun.nio.ch.UnixDomainSocketChannelImpl int
        13: invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.endRead:(Z)V
        14: .line 157
            aload 3
            athrow
        15: .line 156
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* n */
            ifle 16
            iconst_1
            goto 17
      StackMap locals:
      StackMap stack: sun.nio.ch.UnixDomainSocketChannelImpl
        16: iconst_0
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.nio.ByteBuffer int
      StackMap stack: sun.nio.ch.UnixDomainSocketChannelImpl int
        17: invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.endRead:(Z)V
        18: .line 158
            iload 2 /* n */
            istore 5
        19: .line 160
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.readLock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        20: .line 158
            iload 5
            ireturn
        end local 2 // int n
        21: .line 159
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.nio.ByteBuffer
      StackMap stack: java.lang.Throwable
            astore 4
        22: .line 160
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.readLock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        23: .line 161
            aload 4
            athrow
        end local 1 // java.nio.ByteBuffer buf
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
            0   24     1   buf  Ljava/nio/ByteBuffer;
            3   21     2     n  I
      Exception table:
        from    to  target  type
           3    10      10  any
           2    19      21  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      buf   

  private void beginWrite();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
         0: .line 171
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.begin:()V
         1: .line 172
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.stateLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         2: .line 174
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.ensureOpen:()V
         3: .line 175
            aload 0 /* this */
            invokestatic sun.nio.ch.NativeThread.current:()J
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.writerThread:J
         4: .line 172
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 177
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
      Exception table:
        from    to  target  type
           2     5       6  any
           6     7       6  any
    Exceptions:
      throws java.nio.channels.ClosedChannelException

  private void endWrite(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
        start local 1 // boolean completed
         0: .line 188
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.stateLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 189
            aload 0 /* this */
            lconst_0
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.writerThread:J
         2: .line 190
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.state:I
            iconst_1
            if_icmpne 4
         3: .line 191
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.tryFinishClose:()V
         4: .line 188
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2
            monitorexit
         5: goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
         8: .line 194
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* completed */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.end:(Z)V
         9: .line 195
            return
        end local 1 // boolean completed
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
            0   10     1  completed  Z
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Exceptions:
      throws java.nio.channels.AsynchronousCloseException
    MethodParameters:
           Name  Flags
      completed  

  void park(int, long);
    descriptor: (IJ)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
        start local 1 // int event
        start local 2 // long nanos
         0: .line 199
            lload 2 /* nanos */
            lconst_0
            lcmp
            ifgt 3
         1: .line 200
            ldc -1
            lstore 4 /* millis */
        start local 4 // long millis
         2: .line 201
            goto 4
        end local 4 // long millis
         3: .line 202
      StackMap locals:
      StackMap stack:
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            lload 2 /* nanos */
            invokevirtual java.util.concurrent.TimeUnit.toMillis:(J)J
            lstore 4 /* millis */
        start local 4 // long millis
         4: .line 204
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.fd:Ljava/io/FileDescriptor;
            iload 1 /* event */
            lload 4 /* millis */
            invokestatic sun.nio.ch.Net.poll:(Ljava/io/FileDescriptor;IJ)I
            pop
         5: .line 205
            return
        end local 4 // long millis
        end local 2 // long nanos
        end local 1 // int event
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
            0    6     1   event  I
            0    6     2   nanos  J
            2    3     4  millis  J
            4    6     4  millis  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      event  
      nanos  

  public int write(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
        start local 1 // java.nio.ByteBuffer buf
         0: .line 209
            aload 1 /* buf */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 211
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.writeLock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         2: .line 213
            iconst_0
            istore 2 /* n */
        start local 2 // int n
         3: .line 215
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.beginWrite:()V
         4: .line 216
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.fd:Ljava/io/FileDescriptor;
            aload 1 /* buf */
            ldc -1
            getstatic sun.nio.ch.UnixDomainSocketChannelImpl.nd:Lsun/nio/ch/NativeDispatcher;
            invokestatic sun.nio.ch.IOUtil.write:(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;JLsun/nio/ch/NativeDispatcher;)I
            istore 2 /* n */
         5: .line 217
            goto 8
         6: .line 218
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getstatic sun.nio.ch.Net.POLLOUT:S
            lconst_0
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.park:(IJ)V
         7: .line 219
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.fd:Ljava/io/FileDescriptor;
            aload 1 /* buf */
            ldc -1
            getstatic sun.nio.ch.UnixDomainSocketChannelImpl.nd:Lsun/nio/ch/NativeDispatcher;
            invokestatic sun.nio.ch.IOUtil.write:(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;JLsun/nio/ch/NativeDispatcher;)I
            istore 2 /* n */
         8: .line 217
      StackMap locals:
      StackMap stack:
            iload 2 /* n */
            i2l
            invokestatic sun.nio.ch.IOStatus.okayToRetry:(J)Z
            ifeq 15
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.isOpen:()Z
            ifne 6
         9: .line 221
            goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 3
        11: .line 222
            aload 0 /* this */
            iload 2 /* n */
            ifle 12
            iconst_1
            goto 13
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.nio.ByteBuffer int java.lang.Throwable
      StackMap stack: sun.nio.ch.UnixDomainSocketChannelImpl
        12: iconst_0
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.nio.ByteBuffer int java.lang.Throwable
      StackMap stack: sun.nio.ch.UnixDomainSocketChannelImpl int
        13: invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.endWrite:(Z)V
        14: .line 223
            aload 3
            athrow
        15: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* n */
            ifle 16
            iconst_1
            goto 17
      StackMap locals:
      StackMap stack: sun.nio.ch.UnixDomainSocketChannelImpl
        16: iconst_0
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.nio.ByteBuffer int
      StackMap stack: sun.nio.ch.UnixDomainSocketChannelImpl int
        17: invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.endWrite:(Z)V
        18: .line 224
            iload 2 /* n */
            istore 5
        19: .line 226
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.writeLock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        20: .line 224
            iload 5
            ireturn
        end local 2 // int n
        21: .line 225
      StackMap locals: sun.nio.ch.UnixDomainSocketChannelImpl java.nio.ByteBuffer
      StackMap stack: java.lang.Throwable
            astore 4
        22: .line 226
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.writeLock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        23: .line 227
            aload 4
            athrow
        end local 1 // java.nio.ByteBuffer buf
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
            0   24     1   buf  Ljava/nio/ByteBuffer;
            3   21     2     n  I
      Exception table:
        from    to  target  type
           3    10      10  any
           2    19      21  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      buf   

  protected void implCloseChannel();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
         0: .line 239
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.stateLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 240
            getstatic sun.nio.ch.UnixDomainSocketChannelImpl.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.state:I
            ifeq 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 241
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.nio.ch.UnixDomainSocketChannelImpl.state:I
         3: .line 242
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.tryClose:()Z
            ifne 12
         4: .line 243
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.readerThread:J
            lstore 2 /* reader */
        start local 2 // long reader
         5: .line 244
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.writerThread:J
            lstore 4 /* writer */
        start local 4 // long writer
         6: .line 245
            lload 2 /* reader */
            lconst_0
            lcmp
            ifne 7
            lload 4 /* writer */
            lconst_0
            lcmp
            ifeq 12
         7: .line 246
      StackMap locals: long long
      StackMap stack:
            getstatic sun.nio.ch.UnixDomainSocketChannelImpl.nd:Lsun/nio/ch/NativeDispatcher;
            aload 0 /* this */
            getfield sun.nio.ch.UnixDomainSocketChannelImpl.fd:Ljava/io/FileDescriptor;
            invokevirtual sun.nio.ch.NativeDispatcher.preClose:(Ljava/io/FileDescriptor;)V
         8: .line 247
            lload 2 /* reader */
            lconst_0
            lcmp
            ifeq 10
         9: .line 248
            lload 2 /* reader */
            invokestatic sun.nio.ch.NativeThread.signal:(J)V
        10: .line 249
      StackMap locals:
      StackMap stack:
            lload 4 /* writer */
            lconst_0
            lcmp
            ifeq 12
        11: .line 250
            lload 4 /* writer */
            invokestatic sun.nio.ch.NativeThread.signal:(J)V
        end local 4 // long writer
        end local 2 // long reader
        12: .line 239
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
        13: goto 16
      StackMap locals:
      StackMap stack: java.lang.Throwable
        14: aload 1
            monitorexit
        15: athrow
        16: .line 254
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
            5   12     2  reader  J
            6   12     4  writer  J
      Exception table:
        from    to  target  type
           1    13      14  any
          14    15      14  any
    Exceptions:
      throws java.io.IOException

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
         0: .line 258
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 259
            aload 1 /* sb */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSuperclass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 260
            aload 1 /* sb */
            bipush 91
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         3: .line 261
            aload 0 /* this */
            invokevirtual sun.nio.ch.UnixDomainSocketChannelImpl.isOpen:()Z
            ifne 5
         4: .line 262
            aload 1 /* sb */
            ldc "closed"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         5: .line 263
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 1 /* sb */
            bipush 93
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         6: .line 264
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // sun.nio.ch.UnixDomainSocketChannelImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/nio/ch/UnixDomainSocketChannelImpl;
            1    7     1    sb  Ljava/lang/StringBuilder;
}
SourceFile: "UnixDomainSocketChannelImpl.java"