Searched refs:fcntlVoid (Results 1 – 8 of 8) sorted by relevance
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 82 int flags = Os.fcntlVoid(fis.getFD(), F_GETFD); in testFcntlInt() 93 assertEquals(0, (Os.fcntlVoid(fd, F_GETFL) & O_NONBLOCK)); in testFcntlInt_udpSocket() 97 assertTrue((Os.fcntlVoid(fd, F_GETFL) & O_NONBLOCK) != 0); in testFcntlInt_udpSocket() 101 assertEquals(0, (Os.fcntlVoid(fd, F_GETFL) & O_NONBLOCK)); in testFcntlInt_udpSocket() 1374 int flags = Os.fcntlVoid(fd, F_GETFL); in test_odirect() 1564 int flags = Os.fcntlVoid(fd, F_GETFD); in testMemfdCreateFlags() 1577 int flags = Os.fcntlVoid(fd, F_GETFD); in testMemfdCreateFlags()
|
/libcore/luni/src/main/java/libcore/io/ |
D | IoUtils.java | 210 int flags = Libcore.os.fcntlVoid(fd, F_GETFL); in setBlocking()
|
D | ForwardingOs.java | 104 …public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, c… in fcntlVoid() method in ForwardingOs
|
D | Os.java | 79 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() method
|
D | Linux.java | 79 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() method in Linux
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 160 …public static int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return Libcore.os.… in fcntlVoid() method in Os
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | ServerSocketTest.java | 190 assertEquals(0, Libcore.os.fcntlVoid(sconn.getFileDescriptor$(), F_GETFL) & O_NONBLOCK); in test_accept()
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 2610 NATIVE_METHOD(Linux, fcntlVoid, "(Ljava/io/FileDescriptor;I)I"),
|