Home | History | Annotate | Download | only in ch

Lines Matching refs:fd

38     abstract int read(FileDescriptor fd, long address, int len)
49 int pread(FileDescriptor fd, long address, int len, long position)
55 abstract long readv(FileDescriptor fd, long address, int len)
58 abstract int write(FileDescriptor fd, long address, int len)
61 int pwrite(FileDescriptor fd, long address, int len, long position)
67 abstract long writev(FileDescriptor fd, long address, int len)
70 abstract void close(FileDescriptor fd) throws IOException;
72 // Prepare the given fd for closing by duping it to a known internal fd
74 // (Solaris and Linux) to prevent fd recycling.
76 void preClose(FileDescriptor fd) throws IOException {