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 576
            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 581
            invokestatic sun.nio.fs.UnixNativeDispatcher.init:()I
            putstatic sun.nio.fs.UnixNativeDispatcher.capabilities:I
         2: .line 582
            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 native void close(int);
    descriptor: (I)V
    flags: (0x0108) 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 102
            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 103
            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 105
            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 107
            aload 3 /* modeBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         4: .line 108
            aload 2 /* pathBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 105
            lload 5
            lreturn
         6: .line 106
      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 107
            aload 3 /* modeBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         8: .line 108
            aload 2 /* pathBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 109
            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 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 128
            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 129
            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 131
            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 132
            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 133
            aload 3 /* newBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 134
            aload 2 /* existingBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 135
            aload 4
            athrow
         8: .line 133
      StackMap locals:
      StackMap stack:
            aload 3 /* newBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 134
            aload 2 /* existingBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
        10: .line 136
            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 144
            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 146
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.unlink0:(J)V
         2: .line 147
            goto 6
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 2
         4: .line 148
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 149
            aload 2
            athrow
         6: .line 148
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 150
            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 157
            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 159
            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 160
            goto 6
      StackMap locals: int byte[] int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 4
         4: .line 161
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 162
            aload 4
            athrow
         6: .line 161
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 163
            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 171
            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 173
            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 174
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int long sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 5
         4: .line 175
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 176
            aload 5
            athrow
         6: .line 175
      StackMap locals:
      StackMap stack:
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 177
            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 185
            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 186
            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 188
            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 189
            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 190
            aload 3 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 191
            aload 2 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 192
            aload 4
            athrow
         8: .line 190
      StackMap locals:
      StackMap stack:
            aload 3 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 191
            aload 2 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
        10: .line 193
            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 201
            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 202
            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 204
            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 205
            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 206
            aload 5 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 207
            aload 4 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 208
            aload 6
            athrow
         8: .line 206
      StackMap locals:
      StackMap stack:
            aload 5 /* toBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 207
            aload 4 /* fromBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
        10: .line 209
            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 217
            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 219
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* mode */
            invokestatic sun.nio.fs.UnixNativeDispatcher.mkdir0:(JI)V
         2: .line 220
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 221
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 222
            aload 3
            athrow
         6: .line 221
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 223
            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 230
            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 232
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.rmdir0:(J)V
         2: .line 233
            goto 6
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 2
         4: .line 234
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 235
            aload 2
            athrow
         6: .line 234
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 236
            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 245
            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 247
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.readlink0:(J)[B
            astore 3
         2: .line 249
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 247
            aload 3
            areturn
         4: .line 248
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 249
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 250
            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 260
            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 262
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.realpath0:(J)[B
            astore 3
         2: .line 264
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 262
            aload 3
            areturn
         4: .line 263
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 264
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 265
            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 273
            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 274
            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 276
            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 277
            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 278
            aload 3 /* linkBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 279
            aload 2 /* targetBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 280
            aload 4
            athrow
         8: .line 278
      StackMap locals:
      StackMap stack:
            aload 3 /* linkBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         9: .line 279
            aload 2 /* targetBuffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
        10: .line 281
            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 289
            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 291
            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 292
            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 293
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 294
            aload 3
            athrow
         6: .line 293
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 295
            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 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 303
            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 305
            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 306
            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 307
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 308
            aload 3
            athrow
         6: .line 307
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 309
            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 324
            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 326
            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 327
            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 328
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 329
            aload 5
            athrow
         6: .line 328
      StackMap locals:
      StackMap stack:
            aload 4 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 330
            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 338
            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 340
            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 341
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 4
         4: .line 342
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 343
            aload 4
            athrow
         6: .line 342
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 344
            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 352
            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 354
            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 355
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 4
         4: .line 356
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 357
            aload 4
            athrow
         6: .line 356
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 358
            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 371
            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 373
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* mode */
            invokestatic sun.nio.fs.UnixNativeDispatcher.chmod0:(JI)V
         2: .line 374
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 375
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 376
            aload 3
            athrow
         6: .line 375
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 377
            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 392
            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 394
            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 395
            goto 6
      StackMap locals: sun.nio.fs.UnixPath long long sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 6
         4: .line 396
            aload 5 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 397
            aload 6
            athrow
         6: .line 396
      StackMap locals:
      StackMap stack:
            aload 5 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 398
            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 411
            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 413
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.opendir0:(J)J
            lstore 3
         2: .line 415
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 413
            lload 3
            lreturn
         4: .line 414
      StackMap locals: sun.nio.fs.UnixPath sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 415
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 416
            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 452
            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 454
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            iload 1 /* amode */
            invokestatic sun.nio.fs.UnixNativeDispatcher.access0:(JI)V
         2: .line 455
            goto 6
      StackMap locals: sun.nio.fs.UnixPath int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
         3: astore 3
         4: .line 456
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 457
            aload 3
            athrow
         6: .line 456
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 458
            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 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 481
            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 483
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.getpwnam0:(J)I
            istore 3
         2: .line 485
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 483
            iload 3
            ireturn
         4: .line 484
      StackMap locals: java.lang.String sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 485
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 486
            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 496
            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 498
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.address:()J
            invokestatic sun.nio.fs.UnixNativeDispatcher.getgrnam0:(J)I
            istore 3
         2: .line 500
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 498
            iload 3
            ireturn
         4: .line 499
      StackMap locals: java.lang.String sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 500
            aload 1 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 501
            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 511
            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 513
            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 514
            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 515
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         5: .line 516
            aload 3
            athrow
         6: .line 515
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         7: .line 517
            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 525
            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 527
            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 529
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         3: .line 527
            lload 4
            lreturn
         4: .line 528
      StackMap locals: sun.nio.fs.UnixPath int sun.nio.fs.NativeBuffer
      StackMap stack: java.lang.Throwable
            astore 3
         5: .line 529
            aload 2 /* buffer */
            invokevirtual sun.nio.fs.NativeBuffer.release:()V
         6: .line 530
            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 557
            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 564
            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 571
            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