Home
last modified time | relevance | path

Searched refs:F_SETFL (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/native/
DLinuxWatchService.c118 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()
DIOUtil.c79 return (flags == newflags) ? 0 : fcntl(fd, F_SETFL, newflags); in configureBlocking()
/libcore/luni/src/main/java/libcore/io/
DIoUtils.java35 import static android.system.OsConstants.F_SETFL;
216 Libcore.os.fcntlInt(fd, F_SETFL, flags); in setBlocking()
/libcore/luni/src/main/native/
DNetworkUtilities.cpp214 int rc = fcntl(fd, F_SETFL, flags); in setBlocking()
Dandroid_system_OsConstants.cpp240 initConstant(env, c, "F_SETFL", F_SETFL); in OsConstants_initConstants()
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java96 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/
DOsConstants.java289 public static final int F_SETFL = placeholder(); field in OsConstants