Searched refs:fcntlInt (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/main/java/java/io/ |
D | FileDescriptor.java | 181 int newDescriptor = Os.fcntlInt(this, F_DUPFD_CLOEXEC, 0); in cloneForFork()
|
/libcore/luni/src/main/java/libcore/io/ |
D | IoUtils.java | 216 Libcore.os.fcntlInt(fd, F_SETFL, flags); in setBlocking()
|
D | ForwardingOs.java | 103 …public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return os.fcntlIn… in fcntlInt() method in ForwardingOs
|
D | Os.java | 78 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; in fcntlInt() method
|
D | Linux.java | 78 public native int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; in fcntlInt() method in Linux
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 81 Os.fcntlInt(fis.getFD(), F_SETFD, FD_CLOEXEC); in testFcntlInt() 96 Os.fcntlInt(fd, F_SETFL, SOCK_DGRAM | O_NONBLOCK); in testFcntlInt_udpSocket() 100 Os.fcntlInt(fd, F_SETFL, SOCK_DGRAM); in testFcntlInt_udpSocket() 111 Os.fcntlInt(fd, unknownCmd, 0); in testFcntlInt_invalidCmd() 122 Os.fcntlInt(null, F_SETFL, O_NONBLOCK); in testFcntlInt_nullFd()
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 157 …public static int fcntlInt(@NonNull FileDescriptor fd, int cmd, int arg) throws ErrnoException { r… in fcntlInt() method in Os
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 2609 NATIVE_METHOD(Linux, fcntlInt, "(Ljava/io/FileDescriptor;II)I"),
|