class sun.nio.ch.FileDispatcher extends sun.nio.ch.NativeDispatcher
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.nio.ch.FileDispatcher
  super_class: sun.nio.ch.NativeDispatcher
{
  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=0, locals=0, args_size=0
         0: .line 39
            invokestatic sun.nio.ch.IOUtil.load:()V
         1: .line 40
            invokestatic sun.nio.ch.FileDispatcher.init:()V
         2: .line 41
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.ch.FileDispatcher this
         0: .line 35
            aload 0 /* this */
            invokespecial sun.nio.ch.NativeDispatcher.<init>:()V
            return
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/ch/FileDispatcher;

  int read(java.io.FileDescriptor, long, int);
    descriptor: (Ljava/io/FileDescriptor;JI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.nio.ch.FileDispatcher this
        start local 1 // java.io.FileDescriptor fd
        start local 2 // long address
        start local 4 // int len
         0: .line 44
            aload 1 /* fd */
            lload 2 /* address */
            iload 4 /* len */
            invokestatic sun.nio.ch.FileDispatcher.read0:(Ljava/io/FileDescriptor;JI)I
            ireturn
        end local 4 // int len
        end local 2 // long address
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lsun/nio/ch/FileDispatcher;
            0    1     1       fd  Ljava/io/FileDescriptor;
            0    1     2  address  J
            0    1     4      len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      fd       
      address  
      len      

  int pread(java.io.FileDescriptor, long, int, long, java.lang.Object);
    descriptor: (Ljava/io/FileDescriptor;JIJLjava/lang/Object;)I
    flags: (0x0000) 
    Code:
      stack=6, locals=8, args_size=6
        start local 0 // sun.nio.ch.FileDispatcher this
        start local 1 // java.io.FileDescriptor fd
        start local 2 // long address
        start local 4 // int len
        start local 5 // long position
        start local 7 // java.lang.Object lock
         0: .line 49
            aload 1 /* fd */
            lload 2 /* address */
            iload 4 /* len */
            lload 5 /* position */
            invokestatic sun.nio.ch.FileDispatcher.pread0:(Ljava/io/FileDescriptor;JIJ)I
            ireturn
        end local 7 // java.lang.Object lock
        end local 5 // long position
        end local 4 // int len
        end local 2 // long address
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lsun/nio/ch/FileDispatcher;
            0    1     1        fd  Ljava/io/FileDescriptor;
            0    1     2   address  J
            0    1     4       len  I
            0    1     5  position  J
            0    1     7      lock  Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      fd        
      address   
      len       
      position  
      lock      

  long readv(java.io.FileDescriptor, long, int);
    descriptor: (Ljava/io/FileDescriptor;JI)J
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.nio.ch.FileDispatcher this
        start local 1 // java.io.FileDescriptor fd
        start local 2 // long address
        start local 4 // int len
         0: .line 53
            aload 1 /* fd */
            lload 2 /* address */
            iload 4 /* len */
            invokestatic sun.nio.ch.FileDispatcher.readv0:(Ljava/io/FileDescriptor;JI)J
            lreturn
        end local 4 // int len
        end local 2 // long address
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lsun/nio/ch/FileDispatcher;
            0    1     1       fd  Ljava/io/FileDescriptor;
            0    1     2  address  J
            0    1     4      len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      fd       
      address  
      len      

  int write(java.io.FileDescriptor, long, int);
    descriptor: (Ljava/io/FileDescriptor;JI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.nio.ch.FileDispatcher this
        start local 1 // java.io.FileDescriptor fd
        start local 2 // long address
        start local 4 // int len
         0: .line 57
            aload 1 /* fd */
            lload 2 /* address */
            iload 4 /* len */
            invokestatic sun.nio.ch.FileDispatcher.write0:(Ljava/io/FileDescriptor;JI)I
            ireturn
        end local 4 // int len
        end local 2 // long address
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lsun/nio/ch/FileDispatcher;
            0    1     1       fd  Ljava/io/FileDescriptor;
            0    1     2  address  J
            0    1     4      len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      fd       
      address  
      len      

  int pwrite(java.io.FileDescriptor, long, int, long, java.lang.Object);
    descriptor: (Ljava/io/FileDescriptor;JIJLjava/lang/Object;)I
    flags: (0x0000) 
    Code:
      stack=6, locals=8, args_size=6
        start local 0 // sun.nio.ch.FileDispatcher this
        start local 1 // java.io.FileDescriptor fd
        start local 2 // long address
        start local 4 // int len
        start local 5 // long position
        start local 7 // java.lang.Object lock
         0: .line 63
            aload 1 /* fd */
            lload 2 /* address */
            iload 4 /* len */
            lload 5 /* position */
            invokestatic sun.nio.ch.FileDispatcher.pwrite0:(Ljava/io/FileDescriptor;JIJ)I
            ireturn
        end local 7 // java.lang.Object lock
        end local 5 // long position
        end local 4 // int len
        end local 2 // long address
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lsun/nio/ch/FileDispatcher;
            0    1     1        fd  Ljava/io/FileDescriptor;
            0    1     2   address  J
            0    1     4       len  I
            0    1     5  position  J
            0    1     7      lock  Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      fd        
      address   
      len       
      position  
      lock      

  long writev(java.io.FileDescriptor, long, int);
    descriptor: (Ljava/io/FileDescriptor;JI)J
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.nio.ch.FileDispatcher this
        start local 1 // java.io.FileDescriptor fd
        start local 2 // long address
        start local 4 // int len
         0: .line 69
            aload 1 /* fd */
            lload 2 /* address */
            iload 4 /* len */
            invokestatic sun.nio.ch.FileDispatcher.writev0:(Ljava/io/FileDescriptor;JI)J
            lreturn
        end local 4 // int len
        end local 2 // long address
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lsun/nio/ch/FileDispatcher;
            0    1     1       fd  Ljava/io/FileDescriptor;
            0    1     2  address  J
            0    1     4      len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      fd       
      address  
      len      

  void close(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)V
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // sun.nio.ch.FileDispatcher this
        start local 1 // java.io.FileDescriptor fd
         0: .line 73
            aload 1 /* fd */
            invokestatic sun.nio.ch.FileDispatcher.close0:(Ljava/io/FileDescriptor;)V
         1: .line 74
            return
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/nio/ch/FileDispatcher;
            0    2     1    fd  Ljava/io/FileDescriptor;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  void preClose(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)V
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // sun.nio.ch.FileDispatcher this
        start local 1 // java.io.FileDescriptor fd
         0: .line 77
            aload 1 /* fd */
            invokestatic sun.nio.ch.FileDispatcher.preClose0:(Ljava/io/FileDescriptor;)V
         1: .line 78
            return
        end local 1 // java.io.FileDescriptor fd
        end local 0 // sun.nio.ch.FileDispatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/nio/ch/FileDispatcher;
            0    2     1    fd  Ljava/io/FileDescriptor;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  static native int read0(java.io.FileDescriptor, long, int);
    descriptor: (Ljava/io/FileDescriptor;JI)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      fd       
      address  
      len      

  static native int pread0(java.io.FileDescriptor, long, int, long);
    descriptor: (Ljava/io/FileDescriptor;JIJ)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      fd        
      address   
      len       
      position  

  static native long readv0(java.io.FileDescriptor, long, int);
    descriptor: (Ljava/io/FileDescriptor;JI)J
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      fd       
      address  
      len      

  static native int write0(java.io.FileDescriptor, long, int);
    descriptor: (Ljava/io/FileDescriptor;JI)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      fd       
      address  
      len      

  static native int pwrite0(java.io.FileDescriptor, long, int, long);
    descriptor: (Ljava/io/FileDescriptor;JIJ)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      fd        
      address   
      len       
      position  

  static native long writev0(java.io.FileDescriptor, long, int);
    descriptor: (Ljava/io/FileDescriptor;JI)J
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      fd       
      address  
      len      

  static native void close0(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  static native void preClose0(java.io.FileDescriptor);
    descriptor: (Ljava/io/FileDescriptor;)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  static native void closeIntFD(int);
    descriptor: (I)V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      fd    

  static native void init();
    descriptor: ()V
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
}
SourceFile: "FileDispatcher.java"