Searched refs:F_SETFL (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/native/ |
D | LinuxWatchService.c | 118 fcntl(fd, F_SETFL, flags | O_NONBLOCK); in Java_sun_nio_fs_LinuxWatchService_configureBlocking() 120 fcntl(fd, F_SETFL, flags & ~O_NONBLOCK); in Java_sun_nio_fs_LinuxWatchService_configureBlocking()
|
D | IOUtil.c | 79 return (flags == newflags) ? 0 : fcntl(fd, F_SETFL, newflags); in configureBlocking()
|
/libcore/luni/src/main/java/libcore/io/ |
D | IoUtils.java | 35 import static android.system.OsConstants.F_SETFL; 216 Libcore.os.fcntlInt(fd, F_SETFL, flags); in setBlocking()
|
/libcore/luni/src/main/native/ |
D | NetworkUtilities.cpp | 214 int rc = fcntl(fd, F_SETFL, flags); in setBlocking()
|
D | android_system_OsConstants.cpp | 240 initConstant(env, c, "F_SETFL", F_SETFL); in OsConstants_initConstants()
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 96 Os.fcntlInt(fd, F_SETFL, SOCK_DGRAM | O_NONBLOCK); in testFcntlInt_udpSocket() 100 Os.fcntlInt(fd, F_SETFL, SOCK_DGRAM); in testFcntlInt_udpSocket() 122 Os.fcntlInt(null, F_SETFL, O_NONBLOCK); in testFcntlInt_nullFd()
|
/libcore/luni/src/main/java/android/system/ |
D | OsConstants.java | 289 public static final int F_SETFL = placeholder(); field in OsConstants
|