Lines Matching refs:fd

29     public FileDescriptor accept(FileDescriptor fd, InetSocketAddress peerAddress) throws ErrnoException, SocketException;
31 public void bind(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException;
34 public void close(FileDescriptor fd) throws ErrnoException;
35 public void connect(FileDescriptor fd, InetAddress address, int port) throws ErrnoException, SocketException;
39 public void fchmod(FileDescriptor fd, int mode) throws ErrnoException;
40 public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException;
41 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException;
42 public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException;
43 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException;
44 public void fdatasync(FileDescriptor fd) throws ErrnoException;
45 public StructStat fstat(FileDescriptor fd) throws ErrnoException;
46 public StructStatFs fstatfs(FileDescriptor fd) throws ErrnoException;
47 public void fsync(FileDescriptor fd) throws ErrnoException;
48 public void ftruncate(FileDescriptor fd, long length) throws ErrnoException;
61 public SocketAddress getsockname(FileDescriptor fd) throws ErrnoException;
62 public int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException;
63 public InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException;
64 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException;
65 public StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException;
66 public StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException;
70 public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException;
71 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException;
72 public boolean isatty(FileDescriptor fd);
75 public void listen(FileDescriptor fd, int backlog) throws ErrnoException;
76 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException;
81 public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException;
89 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException;
90 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException;
91 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException;
92 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException;
93 public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException;
94 public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException;
95 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
96 public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException;
97 public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException;
100 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException;
101 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException;
107 public void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException;
108 public void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException;
109 public void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException;
110 public void setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) throws ErrnoException;
111 public void setsockoptGroupReq(FileDescriptor fd, int level, int option, StructGroupReq value) throws ErrnoException;
112 public void setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) throws ErrnoException;
113 public void setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) throws ErrnoException;
115 public void shutdown(FileDescriptor fd, int how) throws ErrnoException;
124 public void tcdrain(FileDescriptor fd) throws ErrnoException;
128 public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException;
129 public int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException;
130 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;