Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
DLinuxWatchService.c112 fcntl(fd, F_SETFL, flags | O_NONBLOCK); in Java_sun_nio_fs_LinuxWatchService_configureBlocking()
114 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.java97 Libcore.os.fcntlInt(fd, F_SETFL, flags); in setBlocking()
/libcore/luni/src/main/native/
DNetworkUtilities.cpp198 int rc = fcntl(fd, F_SETFL, flags); in setBlocking()
Dandroid_system_OsConstants.cpp238 initConstant(env, c, "F_SETFL", F_SETFL); in OsConstants_initConstants()
/libcore/luni/src/main/java/android/system/
DOsConstants.java273 public static final int F_SETFL = placeholder(); field in OsConstants