Home
last modified time | relevance | path

Searched refs:fcntlVoid (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java82 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/
DIoUtils.java210 int flags = Libcore.os.fcntlVoid(fd, F_GETFL); in setBlocking()
DForwardingOs.java104 …public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, c… in fcntlVoid() method in ForwardingOs
DOs.java79 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() method
DLinux.java79 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java160 …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/
DServerSocketTest.java190 assertEquals(0, Libcore.os.fcntlVoid(sconn.getFileDescriptor$(), F_GETFL) & O_NONBLOCK); in test_accept()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2610 NATIVE_METHOD(Linux, fcntlVoid, "(Ljava/io/FileDescriptor;I)I"),