Home
last modified time | relevance | path

Searched refs:F_GETFL (Results 1 – 9 of 9) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
DIoUtils.java34 import static android.system.OsConstants.F_GETFL;
210 int flags = Libcore.os.fcntlVoid(fd, F_GETFL); in setBlocking()
/libcore/ojluni/src/main/native/
DLinuxWatchService.c115 int flags = fcntl(fd, F_GETFL); in Java_sun_nio_fs_LinuxWatchService_configureBlocking()
DIOUtil.c76 int flags = fcntl(fd, F_GETFL); in configureBlocking()
DFileDispatcherImpl.c152 int getfl = fcntl(fd, F_GETFL); in FileDispatcherImpl_force0()
/libcore/luni/src/main/native/
DNetworkUtilities.cpp203 int flags = fcntl(fd, F_GETFL); in setBlocking()
Dandroid_system_OsConstants.cpp231 initConstant(env, c, "F_GETFL", F_GETFL); in OsConstants_initConstants()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DServerSocketTest.java47 import static android.system.OsConstants.F_GETFL;
190 assertEquals(0, Libcore.os.fcntlVoid(sconn.getFileDescriptor$(), F_GETFL) & O_NONBLOCK); in test_accept()
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java93 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()
/libcore/luni/src/main/java/android/system/
DOsConstants.java282 public static final int F_GETFL = placeholder(); field in OsConstants