class sun.nio.fs.UnixNativeDispatcher
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.nio.fs.UnixNativeDispatcher
  super_class: java.lang.Object
{
  private static final int SUPPORTS_OPENAT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 619
            new sun.nio.fs.UnixNativeDispatcher$1
            dup
            invokespecial sun.nio.fs.UnixNativeDispatcher$1.<init>:()V
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            pop
         1: .line 624
            invokestatic sun.nio.fs.UnixNativeDispatcher.init:()I
            putstatic sun.nio.fs.UnixNativeDispatcher.capabilities:I
         2: .line 625
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.fs.UnixNativeDispatcher this
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // sun.nio.fs.UnixNativeDispatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/fs/UnixNativeDispatcher;

  static sun.nio.fs.NativeBuffer copyToNativeBuffer(sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // sun.nio.fs.UnixPath path
         0: .line 40
            aload 0 /* path */
            invokevirtual sun.nio.fs.UnixPath.getByteArrayForSysCalls:()[B
            astore 1 /* cstr */
        start local 1 // byte[] cstr
         1: .line 41
            aload 1 /* cstr */
            arraylength
            iconst_1
            iadd
            istore 2 /* size */
        start local 2 // int size
         2: .line 42
            iload 2 /* size */
            invokestatic sun.nio.fs.NativeBuffers.getNativeBufferFromCache:(I)Lsun/nio/fs/NativeBuffer;
            astore 3 /* buffer */
        start local 3 // sun.nio.fs.NativeBuffer buffer
         3: .line 43
            aload 3 /* buffer */
            ifnonnull 6
         4: .line 44
            iload 2 /* size */
            invokestatic sun.nio.fs.NativeBuffers.allocNativeBuffer:(I)Lsun/nio/fs/NativeBuffer;
            astore 3 /* buffer */
         5: .line 45
            goto 8
         6: .line 47
      StackMap locals: byte[] int sun.nio.fs.NativeBuffer
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.owner:()Ljava/lang/Object;
            aload 0 /* path */
            if_acmpne 8
         7: .line 48
            aload 3 /* buffer */
            areturn
         8: .line 50
      StackMap locals:
      StackMap stack:
            aload 1 /* cstr */
            aload 3 /* buffer */
            invokestatic sun.nio.fs.NativeBuffers.copyCStringToNativeBuffer:([BLsun/nio/fs/NativeBuffer;)V
         9: .line 51
            aload 3 /* buffer */
            aload 0 /* path */
            invokevirtual sun.nio.fs.NativeBuffer.setOwner:(Ljava/lang/Object;)V
        10: .line 52
            aload 3 /* buffer */
            areturn
        end local 3 // sun.nio.fs.NativeBuffer buffer
        end local 2 // int size
        end local 1 // byte[] cstr
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    path  Lsun/nio/fs/UnixPath;
            1   11     1    cstr  [B
            2   11     2    size  I
            3   11     3  buffer  Lsun/nio/fs/NativeBuffer;
    MethodParameters:
      Name  Flags
      path  

  static native byte[] getcwd();
    descriptor: ()[B
    flags: (0x0108) ACC_STATIC, ACC_NATIVE

  static native int dup(int);
    descriptor: (I)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
         Name  Flags
      filedes  

  static int open(sun.nio.fs.UnixPath, int, int);
    descriptor: (Lsun/nio/fs/UnixPath;II)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // int flags
        start local 2 // int mode
         0: .line 69
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 3 /* buffer */
        start local 3 // sun.nio.fs.NativeBuffer buffer
         1: .line 71
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* flags */
            iload 2 /* mode */
            invokestatic sun.nio.fs.UnixNativeDispatcher.open0:(JII)I
            istore 5
         2: .line 73
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 71
            iload 5
            ireturn
         4: .line 72
      StackMap locals: sun.nio.fs.UnixPath int int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 4
         5: .line 73
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 74
            aload 4
            athrow
        end local 3 // sun.nio.fs.NativeBuffer buffer
        end local 2 // int mode
        end local 1 // int flags
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    path  Lsun/nio/fs/UnixPath;
            0    7     1   flags  I
            0    7     2    mode  I
            1    7     3  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      path   
      flags  
      mode   

  private static native int open0(long, int, int);
    descriptor: (JII)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      flags        
      mode         

  static int openat(int, byte[], int, int);
    descriptor: (I[BII)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // int dfd
        start local 1 // byte[] path
        start local 2 // int flags
        start local 3 // int mode
         0: .line 83
            aload 1 /* path */
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 4 /* buffer */
        start local 4 // sun.nio.fs.NativeBuffer buffer
         1: .line 85
            iload 0 /* dfd */
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 2 /* flags */
            iload 3 /* mode */
            invokestatic sun.nio.fs.UnixNativeDispatcher.openat0:(IJII)I
            istore 6
         2: .line 87
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 85
            iload 6
            ireturn
         4: .line 86
      StackMap locals: int byte[] int int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 5
         5: .line 87
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 88
            aload 5
            athrow
        end local 4 // sun.nio.fs.NativeBuffer buffer
        end local 3 // int mode
        end local 2 // int flags
        end local 1 // byte[] path
        end local 0 // int dfd
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0     dfd  I
            0    7     1    path  [B
            0    7     2   flags  I
            0    7     3    mode  I
            1    7     4  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      dfd    
      path   
      flags  
      mode   

  private static native int openat0(int, long, int, int);
    descriptor: (IJII)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      dfd          
      pathAddress  
      flags        
      mode         

  static void close(int);
    descriptor: (I)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int fd
         0: .line 97
            iload 0 /* fd */
            iconst_m1
            if_icmpeq 2
         1: .line 98
            iload 0 /* fd */
            invokestatic sun.nio.fs.UnixNativeDispatcher.close0:(I)V
         2: .line 100
      StackMap locals:
      StackMap stack:
            return
        end local 0 // int fd
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    fd  I
    MethodParameters:
      Name  Flags
      fd    

  private static native void close0(int);
    descriptor: (I)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      fd    

  static long fopen(sun.nio.fs.UnixPath, java.lang.String);
    descriptor: (Lsun/nio/fs/UnixPath;Ljava/lang/String;)J
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // sun.nio.fs.UnixPath filename
        start local 1 // java.lang.String mode
         0: .line 107
            aload 0 /* filename */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* pathBuffer */
        start local 2 // sun.nio.fs.NativeBuffer pathBuffer
         1: .line 108
            aload 1 /* mode */
            invokestatic sun.nio.fs.Util.toBytes:(Ljava/lang/String;)[B
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 3 /* modeBuffer */
        start local 3 // sun.nio.fs.NativeBuffer modeBuffer
         2: .line 110
            aload 2 /* pathBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            aload 3 /* modeBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.fopen0:(JJ)J
            lstore 5
         3: .line 112
            aload 3 /* modeBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         4: .line 113
            aload 2 /* pathBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 110
            lload 5
            lreturn
         6: .line 111
      StackMap locals: sun.nio.fs.UnixPath java.lang.String sun.nio.fs.NativeBuffer sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 4
         7: .line 112
            aload 3 /* modeBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         8: .line 113
            aload 2 /* pathBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 114
            aload 4
            athrow
        end local 3 // sun.nio.fs.NativeBuffer modeBuffer
        end local 2 // sun.nio.fs.NativeBuffer pathBuffer
        end local 1 // java.lang.String mode
        end local 0 // sun.nio.fs.UnixPath filename
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0    filename  Lsun/nio/fs/UnixPath;
            0   10     1        mode  Ljava/lang/String;
            1   10     2  pathBuffer  Lsun/nio/fs/NativeBuffer;
            2   10     3  modeBuffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           2     3       6  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
          Name  Flags
      filename  
      mode      

  private static native long fopen0(long, long);
    descriptor: (JJ)J
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      modeAddress  

  static native void fclose(long);
    descriptor: (J)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
        Name  Flags
      stream  

  static native void rewind(long);
    descriptor: (J)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
        Name  Flags
      stream  

  static native int getlinelen(long);
    descriptor: (J)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
        Name  Flags
      stream  

  static void link(sun.nio.fs.UnixPath, sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixPath;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.nio.fs.UnixPath existing
        start local 1 // sun.nio.fs.UnixPath newfile
         0: .line 138
            aload 0 /* existing */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* existingBuffer */
        start local 2 // sun.nio.fs.NativeBuffer existingBuffer
         1: .line 139
            aload 1 /* newfile */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 3 /* newBuffer */
        start local 3 // sun.nio.fs.NativeBuffer newBuffer
         2: .line 141
            aload 2 /* existingBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            aload 3 /* newBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.link0:(JJ)V
         3: .line 142
            goto 8
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         4: astore 4
         5: .line 143
            aload 3 /* newBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 144
            aload 2 /* existingBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 145
            aload 4
            athrow
         8: .line 143
      StackMap locals:
      StackMap stack:
            aload 3 /* newBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 144
            aload 2 /* existingBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
        10: .line 146
            return
        end local 3 // sun.nio.fs.NativeBuffer newBuffer
        end local 2 // sun.nio.fs.NativeBuffer existingBuffer
        end local 1 // sun.nio.fs.UnixPath newfile
        end local 0 // sun.nio.fs.UnixPath existing
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   11     0        existing  Lsun/nio/fs/UnixPath;
            0   11     1         newfile  Lsun/nio/fs/UnixPath;
            1   11     2  existingBuffer  Lsun/nio/fs/NativeBuffer;
            2   11     3       newBuffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           2     4       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
          Name  Flags
      existing  
      newfile   

  private static native void link0(long, long);
    descriptor: (JJ)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
                 Name  Flags
      existingAddress  
      newAddress       

  static void unlink(sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.nio.fs.UnixPath path
         0: .line 154
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 156
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.unlink0:(J)V
         2: .line 157
            goto 6
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 2
         4: .line 158
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 159
            aload 2
            athrow
         6: .line 158
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 160
            return
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            1    8     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  

  private static native void unlink0(long);
    descriptor: (J)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  

  static void unlinkat(int, byte[], int);
    descriptor: (I[BI)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // int dfd
        start local 1 // byte[] path
        start local 2 // int flag
         0: .line 167
            aload 1 /* path */
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 3 /* buffer */
        start local 3 // sun.nio.fs.NativeBuffer buffer
         1: .line 169
            iload 0 /* dfd */
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 2 /* flag */
            invokestatic sun.nio.fs.UnixNativeDispatcher.unlinkat0:(IJI)V
         2: .line 170
            goto 6
      StackMap locals: int byte[] int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 4
         4: .line 171
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 172
            aload 4
            athrow
         6: .line 171
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 173
            return
        end local 3 // sun.nio.fs.NativeBuffer buffer
        end local 2 // int flag
        end local 1 // byte[] path
        end local 0 // int dfd
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0     dfd  I
            0    8     1    path  [B
            0    8     2    flag  I
            1    8     3  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      dfd   
      path  
      flag  

  private static native void unlinkat0(int, long, int);
    descriptor: (IJI)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      dfd          
      pathAddress  
      flag         

  static void mknod(sun.nio.fs.UnixPath, int, long);
    descriptor: (Lsun/nio/fs/UnixPath;IJ)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // int mode
        start local 2 // long dev
         0: .line 181
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 4 /* buffer */
        start local 4 // sun.nio.fs.NativeBuffer buffer
         1: .line 183
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* mode */
            lload 2 /* dev */
            invokestatic sun.nio.fs.UnixNativeDispatcher.mknod0:(JIJ)V
         2: .line 184
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int long sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 5
         4: .line 185
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 186
            aload 5
            athrow
         6: .line 185
      StackMap locals:
      StackMap stack:
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 187
            return
        end local 4 // sun.nio.fs.NativeBuffer buffer
        end local 2 // long dev
        end local 1 // int mode
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1    mode  I
            0    8     2     dev  J
            1    8     4  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  
      mode  
      dev   

  private static native void mknod0(long, int, long);
    descriptor: (JIJ)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      mode         
      dev          

  static void rename(sun.nio.fs.UnixPath, sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixPath;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.nio.fs.UnixPath from
        start local 1 // sun.nio.fs.UnixPath to
         0: .line 195
            aload 0 /* from */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* fromBuffer */
        start local 2 // sun.nio.fs.NativeBuffer fromBuffer
         1: .line 196
            aload 1 /* to */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 3 /* toBuffer */
        start local 3 // sun.nio.fs.NativeBuffer toBuffer
         2: .line 198
            aload 2 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            aload 3 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.rename0:(JJ)V
         3: .line 199
            goto 8
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         4: astore 4
         5: .line 200
            aload 3 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 201
            aload 2 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 202
            aload 4
            athrow
         8: .line 200
      StackMap locals:
      StackMap stack:
            aload 3 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 201
            aload 2 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
        10: .line 203
            return
        end local 3 // sun.nio.fs.NativeBuffer toBuffer
        end local 2 // sun.nio.fs.NativeBuffer fromBuffer
        end local 1 // sun.nio.fs.UnixPath to
        end local 0 // sun.nio.fs.UnixPath from
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        from  Lsun/nio/fs/UnixPath;
            0   11     1          to  Lsun/nio/fs/UnixPath;
            1   11     2  fromBuffer  Lsun/nio/fs/NativeBuffer;
            2   11     3    toBuffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           2     4       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      from  
      to    

  private static native void rename0(long, long);
    descriptor: (JJ)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      fromAddress  
      toAddress    

  static void renameat(int, byte[], int, byte[]);
    descriptor: (I[BI[B)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=7, args_size=4
        start local 0 // int fromfd
        start local 1 // byte[] from
        start local 2 // int tofd
        start local 3 // byte[] to
         0: .line 211
            aload 1 /* from */
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 4 /* fromBuffer */
        start local 4 // sun.nio.fs.NativeBuffer fromBuffer
         1: .line 212
            aload 3 /* to */
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 5 /* toBuffer */
        start local 5 // sun.nio.fs.NativeBuffer toBuffer
         2: .line 214
            iload 0 /* fromfd */
            aload 4 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 2 /* tofd */
            aload 5 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.renameat0:(IJIJ)V
         3: .line 215
            goto 8
      StackMap locals: int byte[] int byte[] sun.nio.fs.NativeBuffer sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         4: astore 6
         5: .line 216
            aload 5 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 217
            aload 4 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 218
            aload 6
            athrow
         8: .line 216
      StackMap locals:
      StackMap stack:
            aload 5 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 217
            aload 4 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
        10: .line 219
            return
        end local 5 // sun.nio.fs.NativeBuffer toBuffer
        end local 4 // sun.nio.fs.NativeBuffer fromBuffer
        end local 3 // byte[] to
        end local 2 // int tofd
        end local 1 // byte[] from
        end local 0 // int fromfd
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0      fromfd  I
            0   11     1        from  [B
            0   11     2        tofd  I
            0   11     3          to  [B
            1   11     4  fromBuffer  Lsun/nio/fs/NativeBuffer;
            2   11     5    toBuffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           2     4       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
        Name  Flags
      fromfd  
      from    
      tofd    
      to      

  private static native void renameat0(int, long, int, long);
    descriptor: (IJIJ)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      fromfd       
      fromAddress  
      tofd         
      toAddress    

  static void mkdir(sun.nio.fs.UnixPath, int);
    descriptor: (Lsun/nio/fs/UnixPath;I)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // int mode
         0: .line 227
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* buffer */
        start local 2 // sun.nio.fs.NativeBuffer buffer
         1: .line 229
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* mode */
            invokestatic sun.nio.fs.UnixNativeDispatcher.mkdir0:(JI)V
         2: .line 230
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 231
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 232
            aload 3
            athrow
         6: .line 231
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 233
            return
        end local 2 // sun.nio.fs.NativeBuffer buffer
        end local 1 // int mode
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1    mode  I
            1    8     2  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  
      mode  

  private static native void mkdir0(long, int);
    descriptor: (JI)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      mode         

  static void rmdir(sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.nio.fs.UnixPath path
         0: .line 240
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 242
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.rmdir0:(J)V
         2: .line 243
            goto 6
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 2
         4: .line 244
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 245
            aload 2
            athrow
         6: .line 244
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 246
            return
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            1    8     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  

  private static native void rmdir0(long);
    descriptor: (J)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  

  static byte[] readlink(sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;)[B
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // sun.nio.fs.UnixPath path
         0: .line 255
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 257
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.readlink0:(J)[B
            astore 3
         2: .line 259
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 257
            aload 3
            areturn
         4: .line 258
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 259
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 260
            aload 2
            athrow
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    path  Lsun/nio/fs/UnixPath;
            1    7     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  

  private static native byte[] readlink0(long);
    descriptor: (J)[B
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  

  static byte[] realpath(sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;)[B
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // sun.nio.fs.UnixPath path
         0: .line 270
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 272
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.realpath0:(J)[B
            astore 3
         2: .line 274
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 272
            aload 3
            areturn
         4: .line 273
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 274
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 275
            aload 2
            athrow
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    path  Lsun/nio/fs/UnixPath;
            1    7     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  

  private static native byte[] realpath0(long);
    descriptor: (J)[B
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  

  static void symlink(byte[], sun.nio.fs.UnixPath);
    descriptor: ([BLsun/nio/fs/UnixPath;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // byte[] name1
        start local 1 // sun.nio.fs.UnixPath name2
         0: .line 283
            aload 0 /* name1 */
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 2 /* targetBuffer */
        start local 2 // sun.nio.fs.NativeBuffer targetBuffer
         1: .line 284
            aload 1 /* name2 */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 3 /* linkBuffer */
        start local 3 // sun.nio.fs.NativeBuffer linkBuffer
         2: .line 286
            aload 2 /* targetBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            aload 3 /* linkBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.symlink0:(JJ)V
         3: .line 287
            goto 8
      StackMap locals: byte[] sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         4: astore 4
         5: .line 288
            aload 3 /* linkBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 289
            aload 2 /* targetBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 290
            aload 4
            athrow
         8: .line 288
      StackMap locals:
      StackMap stack:
            aload 3 /* linkBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 289
            aload 2 /* targetBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
        10: .line 291
            return
        end local 3 // sun.nio.fs.NativeBuffer linkBuffer
        end local 2 // sun.nio.fs.NativeBuffer targetBuffer
        end local 1 // sun.nio.fs.UnixPath name2
        end local 0 // byte[] name1
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0         name1  [B
            0   11     1         name2  Lsun/nio/fs/UnixPath;
            1   11     2  targetBuffer  Lsun/nio/fs/NativeBuffer;
            2   11     3    linkBuffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           2     4       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      name1  
      name2  

  private static native void symlink0(long, long);
    descriptor: (JJ)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      name1  
      name2  

  static void stat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes);
    descriptor: (Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // sun.nio.fs.UnixFileAttributes attrs
         0: .line 299
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* buffer */
        start local 2 // sun.nio.fs.NativeBuffer buffer
         1: .line 301
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            aload 1 /* attrs */
            invokestatic sun.nio.fs.UnixNativeDispatcher.stat0:(JLsun/nio/fs/UnixFileAttributes;)V
         2: .line 302
            goto 6
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.UnixFileAttributes sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 303
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 304
            aload 3
            athrow
         6: .line 303
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 305
            return
        end local 2 // sun.nio.fs.NativeBuffer buffer
        end local 1 // sun.nio.fs.UnixFileAttributes attrs
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1   attrs  Lsun/nio/fs/UnixFileAttributes;
            1    8     2  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      path   
      attrs  

  private static native void stat0(long, sun.nio.fs.UnixFileAttributes);
    descriptor: (JLsun/nio/fs/UnixFileAttributes;)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      attrs        

  static int stat(sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // sun.nio.fs.UnixPath path
         0: .line 316
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 318
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.stat1:(J)I
            istore 3
         2: .line 320
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 318
            iload 3
            ireturn
         4: .line 319
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 320
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 321
            aload 2
            athrow
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    path  Lsun/nio/fs/UnixPath;
            1    7     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    MethodParameters:
      Name  Flags
      path  

  private static native int stat1(long);
    descriptor: (J)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
             Name  Flags
      pathAddress  

  static void lstat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes);
    descriptor: (Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // sun.nio.fs.UnixFileAttributes attrs
         0: .line 330
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* buffer */
        start local 2 // sun.nio.fs.NativeBuffer buffer
         1: .line 332
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            aload 1 /* attrs */
            invokestatic sun.nio.fs.UnixNativeDispatcher.lstat0:(JLsun/nio/fs/UnixFileAttributes;)V
         2: .line 333
            goto 6
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.UnixFileAttributes sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 334
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 335
            aload 3
            athrow
         6: .line 334
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 336
            return
        end local 2 // sun.nio.fs.NativeBuffer buffer
        end local 1 // sun.nio.fs.UnixFileAttributes attrs
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1   attrs  Lsun/nio/fs/UnixFileAttributes;
            1    8     2  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      path   
      attrs  

  private static native void lstat0(long, sun.nio.fs.UnixFileAttributes);
    descriptor: (JLsun/nio/fs/UnixFileAttributes;)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      attrs        

  static native void fstat(int, sun.nio.fs.UnixFileAttributes);
    descriptor: (ILsun/nio/fs/UnixFileAttributes;)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      fd     
      attrs  

  static void fstatat(int, byte[], int, sun.nio.fs.UnixFileAttributes);
    descriptor: (I[BILsun/nio/fs/UnixFileAttributes;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // int dfd
        start local 1 // byte[] path
        start local 2 // int flag
        start local 3 // sun.nio.fs.UnixFileAttributes attrs
         0: .line 351
            aload 1 /* path */
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 4 /* buffer */
        start local 4 // sun.nio.fs.NativeBuffer buffer
         1: .line 353
            iload 0 /* dfd */
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 2 /* flag */
            aload 3 /* attrs */
            invokestatic sun.nio.fs.UnixNativeDispatcher.fstatat0:(IJILsun/nio/fs/UnixFileAttributes;)V
         2: .line 354
            goto 6
      StackMap locals: int byte[] int sun.nio.fs.UnixFileAttributes sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 5
         4: .line 355
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 356
            aload 5
            athrow
         6: .line 355
      StackMap locals:
      StackMap stack:
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 357
            return
        end local 4 // sun.nio.fs.NativeBuffer buffer
        end local 3 // sun.nio.fs.UnixFileAttributes attrs
        end local 2 // int flag
        end local 1 // byte[] path
        end local 0 // int dfd
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0     dfd  I
            0    8     1    path  [B
            0    8     2    flag  I
            0    8     3   attrs  Lsun/nio/fs/UnixFileAttributes;
            1    8     4  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      dfd    
      path   
      flag   
      attrs  

  private static native void fstatat0(int, long, int, sun.nio.fs.UnixFileAttributes);
    descriptor: (IJILsun/nio/fs/UnixFileAttributes;)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      dfd          
      pathAddress  
      flag         
      attrs        

  static void chown(sun.nio.fs.UnixPath, int, int);
    descriptor: (Lsun/nio/fs/UnixPath;II)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // int uid
        start local 2 // int gid
         0: .line 365
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 3 /* buffer */
        start local 3 // sun.nio.fs.NativeBuffer buffer
         1: .line 367
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* uid */
            iload 2 /* gid */
            invokestatic sun.nio.fs.UnixNativeDispatcher.chown0:(JII)V
         2: .line 368
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 4
         4: .line 369
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 370
            aload 4
            athrow
         6: .line 369
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 371
            return
        end local 3 // sun.nio.fs.NativeBuffer buffer
        end local 2 // int gid
        end local 1 // int uid
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1     uid  I
            0    8     2     gid  I
            1    8     3  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  
      uid   
      gid   

  private static native void chown0(long, int, int);
    descriptor: (JII)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      uid          
      gid          

  static void lchown(sun.nio.fs.UnixPath, int, int);
    descriptor: (Lsun/nio/fs/UnixPath;II)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // int uid
        start local 2 // int gid
         0: .line 379
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 3 /* buffer */
        start local 3 // sun.nio.fs.NativeBuffer buffer
         1: .line 381
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* uid */
            iload 2 /* gid */
            invokestatic sun.nio.fs.UnixNativeDispatcher.lchown0:(JII)V
         2: .line 382
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 4
         4: .line 383
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 384
            aload 4
            athrow
         6: .line 383
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 385
            return
        end local 3 // sun.nio.fs.NativeBuffer buffer
        end local 2 // int gid
        end local 1 // int uid
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1     uid  I
            0    8     2     gid  I
            1    8     3  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  
      uid   
      gid   

  private static native void lchown0(long, int, int);
    descriptor: (JII)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      uid          
      gid          

  static native void fchown(int, int, int);
    descriptor: (III)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      fd    
      uid   
      gid   

  static void chmod(sun.nio.fs.UnixPath, int);
    descriptor: (Lsun/nio/fs/UnixPath;I)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // int mode
         0: .line 398
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* buffer */
        start local 2 // sun.nio.fs.NativeBuffer buffer
         1: .line 400
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* mode */
            invokestatic sun.nio.fs.UnixNativeDispatcher.chmod0:(JI)V
         2: .line 401
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 402
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 403
            aload 3
            athrow
         6: .line 402
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 404
            return
        end local 2 // sun.nio.fs.NativeBuffer buffer
        end local 1 // int mode
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1    mode  I
            1    8     2  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  
      mode  

  private static native void chmod0(long, int);
    descriptor: (JI)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      mode         

  static native void fchmod(int, int);
    descriptor: (II)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      fd    
      mode  

  static void utimes(sun.nio.fs.UnixPath, long, long);
    descriptor: (Lsun/nio/fs/UnixPath;JJ)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // long times0
        start local 3 // long times1
         0: .line 419
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 5 /* buffer */
        start local 5 // sun.nio.fs.NativeBuffer buffer
         1: .line 421
            aload 5 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            lload 1 /* times0 */
            lload 3 /* times1 */
            invokestatic sun.nio.fs.UnixNativeDispatcher.utimes0:(JJJ)V
         2: .line 422
            goto 6
      StackMap locals: sun.nio.fs.UnixPath long long sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 6
         4: .line 423
            aload 5 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 424
            aload 6
            athrow
         6: .line 423
      StackMap locals:
      StackMap stack:
            aload 5 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 425
            return
        end local 5 // sun.nio.fs.NativeBuffer buffer
        end local 3 // long times1
        end local 1 // long times0
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1  times0  J
            0    8     3  times1  J
            1    8     5  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
        Name  Flags
      path    
      times0  
      times1  

  private static native void utimes0(long, long, long);
    descriptor: (JJJ)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      times0       
      times1       

  static native void futimes(int, long, long);
    descriptor: (IJJ)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
        Name  Flags
      fd      
      times0  
      times1  

  static long opendir(sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;)J
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // sun.nio.fs.UnixPath path
         0: .line 438
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 440
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.opendir0:(J)J
            lstore 3
         2: .line 442
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 440
            lload 3
            lreturn
         4: .line 441
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 442
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 443
            aload 2
            athrow
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    path  Lsun/nio/fs/UnixPath;
            1    7     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  

  private static native long opendir0(long);
    descriptor: (J)J
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  

  static native long fdopendir(int);
    descriptor: (I)J
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      dfd   

  static native void closedir(long);
    descriptor: (J)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      dir   

  static native byte[] readdir(long);
    descriptor: (J)[B
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      dir   

  static native int read(int, long, int);
    descriptor: (IJI)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
        Name  Flags
      fildes  
      buf     
      nbyte   

  static native int write(int, long, int);
    descriptor: (IJI)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
        Name  Flags
      fildes  
      buf     
      nbyte   

  static void access(sun.nio.fs.UnixPath, int);
    descriptor: (Lsun/nio/fs/UnixPath;I)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // int amode
         0: .line 479
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* buffer */
        start local 2 // sun.nio.fs.NativeBuffer buffer
         1: .line 481
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* amode */
            invokestatic sun.nio.fs.UnixNativeDispatcher.access0:(JI)V
         2: .line 482
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 483
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 484
            aload 3
            athrow
         6: .line 483
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 485
            return
        end local 2 // sun.nio.fs.NativeBuffer buffer
        end local 1 // int amode
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1   amode  I
            1    8     2  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      path   
      amode  

  private static native void access0(long, int);
    descriptor: (JI)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      amode        

  static boolean exists(sun.nio.fs.UnixPath);
    descriptor: (Lsun/nio/fs/UnixPath;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // sun.nio.fs.UnixPath path
         0: .line 494
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 496
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.exists0:(J)Z
            istore 3
         2: .line 498
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 496
            iload 3
            ireturn
         4: .line 497
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 498
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 499
            aload 2
            athrow
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    path  Lsun/nio/fs/UnixPath;
            1    7     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    MethodParameters:
      Name  Flags
      path  

  private static native boolean exists0(long);
    descriptor: (J)Z
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
             Name  Flags
      pathAddress  

  static native byte[] getpwuid(int);
    descriptor: (I)[B
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      uid   

  static native byte[] getgrgid(int);
    descriptor: (I)[B
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      gid   

  static int getpwnam(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // java.lang.String name
         0: .line 524
            aload 0 /* name */
            invokestatic sun.nio.fs.Util.toBytes:(Ljava/lang/String;)[B
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 526
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.getpwnam0:(J)I
            istore 3
         2: .line 528
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 526
            iload 3
            ireturn
         4: .line 527
      StackMap locals: java.lang.String sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 528
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 529
            aload 2
            athrow
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    name  Ljava/lang/String;
            1    7     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      name  

  private static native int getpwnam0(long);
    descriptor: (J)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      nameAddress  

  static int getgrnam(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // java.lang.String name
         0: .line 539
            aload 0 /* name */
            invokestatic sun.nio.fs.Util.toBytes:(Ljava/lang/String;)[B
            invokestatic sun.nio.fs.NativeBuffers.asNativeBuffer:([B)Lsun/nio/fs/NativeBuffer;
            astore 1 /* buffer */
        start local 1 // sun.nio.fs.NativeBuffer buffer
         1: .line 541
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.getgrnam0:(J)I
            istore 3
         2: .line 543
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 541
            iload 3
            ireturn
         4: .line 542
      StackMap locals: java.lang.String sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 543
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 544
            aload 2
            athrow
        end local 1 // sun.nio.fs.NativeBuffer buffer
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    name  Ljava/lang/String;
            1    7     1  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      name  

  private static native int getgrnam0(long);
    descriptor: (J)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      nameAddress  

  static void statvfs(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileStoreAttributes);
    descriptor: (Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileStoreAttributes;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // sun.nio.fs.UnixFileStoreAttributes attrs
         0: .line 554
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* buffer */
        start local 2 // sun.nio.fs.NativeBuffer buffer
         1: .line 556
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            aload 1 /* attrs */
            invokestatic sun.nio.fs.UnixNativeDispatcher.statvfs0:(JLsun/nio/fs/UnixFileStoreAttributes;)V
         2: .line 557
            goto 6
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.UnixFileStoreAttributes sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 558
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 559
            aload 3
            athrow
         6: .line 558
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 560
            return
        end local 2 // sun.nio.fs.NativeBuffer buffer
        end local 1 // sun.nio.fs.UnixFileStoreAttributes attrs
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    path  Lsun/nio/fs/UnixPath;
            0    8     1   attrs  Lsun/nio/fs/UnixFileStoreAttributes;
            1    8     2  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     3       3  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
       Name  Flags
      path   
      attrs  

  private static native void statvfs0(long, sun.nio.fs.UnixFileStoreAttributes);
    descriptor: (JLsun/nio/fs/UnixFileStoreAttributes;)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      attrs        

  static long pathconf(sun.nio.fs.UnixPath, int);
    descriptor: (Lsun/nio/fs/UnixPath;I)J
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // sun.nio.fs.UnixPath path
        start local 1 // int name
         0: .line 568
            aload 0 /* path */
            invokestatic sun.nio.fs.UnixNativeDispatcher.copyToNativeBuffer:(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;
            astore 2 /* buffer */
        start local 2 // sun.nio.fs.NativeBuffer buffer
         1: .line 570
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* name */
            invokestatic sun.nio.fs.UnixNativeDispatcher.pathconf0:(JI)J
            lstore 4
         2: .line 572
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 570
            lload 4
            lreturn
         4: .line 571
      StackMap locals: sun.nio.fs.UnixPath int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 3
         5: .line 572
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 573
            aload 3
            athrow
        end local 2 // sun.nio.fs.NativeBuffer buffer
        end local 1 // int name
        end local 0 // sun.nio.fs.UnixPath path
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    path  Lsun/nio/fs/UnixPath;
            0    7     1    name  I
            1    7     2  buffer  Lsun/nio/fs/NativeBuffer;
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
      Name  Flags
      path  
      name  

  private static native long pathconf0(long, int);
    descriptor: (JI)J
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
             Name  Flags
      pathAddress  
      name         

  static native long fpathconf(int, int);
    descriptor: (II)J
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws sun.nio.fs.UnixException
    MethodParameters:
         Name  Flags
      filedes  
      name     

  static native byte[] strerror(int);
    descriptor: (I)[B
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      errnum  

  static boolean openatSupported();
    descriptor: ()Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 600
            getstatic sun.nio.fs.UnixNativeDispatcher.capabilities:I
            iconst_2
            iand
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static boolean futimesSupported();
    descriptor: ()Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 607
            getstatic sun.nio.fs.UnixNativeDispatcher.capabilities:I
            iconst_4
            iand
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static boolean birthtimeSupported();
    descriptor: ()Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 614
            getstatic sun.nio.fs.UnixNativeDispatcher.capabilities:I
            ldc 65536
            iand
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static native int init();
    descriptor: ()I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
}
SourceFile: "UnixNativeDispatcher.java"
NestMembers:
  sun.nio.fs.UnixNativeDispatcher$1
InnerClasses:
  sun.nio.fs.UnixNativeDispatcher$1