Searched refs:F_GETFL (Results 1 – 9 of 9) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | IoUtils.java | 39 import static android.system.OsConstants.F_GETFL; 260 int flags = Libcore.os.fcntlVoid(fd, F_GETFL); in setBlocking()
|
D | BlockGuardOs.java | 117 int flag = android.system.Os.fcntlInt(fd, F_GETFL, 0); in isNonBlockingFile()
|
/libcore/ojluni/src/main/native/ |
D | LinuxWatchService.c | 115 int flags = fcntl(fd, F_GETFL); in Java_sun_nio_fs_LinuxWatchService_configureBlocking()
|
D | IOUtil.c | 76 int flags = fcntl(fd, F_GETFL); in configureBlocking()
|
D | FileDispatcherImpl.c | 152 int getfl = fcntl(fd, F_GETFL); in FileDispatcherImpl_force0()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | ServerSocketTest.java | 47 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/main/native/ |
D | NetworkUtilities.cpp | 526 int flags = fcntl(fd, F_GETFL); in setBlocking()
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 115 assertEquals(0, (Os.fcntlVoid(fd, F_GETFL) & O_NONBLOCK)); in testFcntlInt_udpSocket() 119 assertTrue((Os.fcntlVoid(fd, F_GETFL) & O_NONBLOCK) != 0); in testFcntlInt_udpSocket() 123 assertEquals(0, (Os.fcntlVoid(fd, F_GETFL) & O_NONBLOCK)); in testFcntlInt_udpSocket() 1828 int flags = Os.fcntlVoid(fd, F_GETFL);
|
/libcore/luni/src/main/java/android/system/ |
D | OsConstants.java | 346 public static final int F_GETFL = placeholder(); field in OsConstants
|