HomeSort by relevance Sort by last modified time
    Searched refs:F_SETFL (Results 101 - 125 of 275) sorted by null

1 2 3 45 6 7 8 91011

  /external/chromium_org/base/
sync_socket_posix.cc 226 fcntl(handle_, F_SETFL, flags | O_NONBLOCK);
233 fcntl(handle_, F_SETFL, flags);
  /external/chromium_org/sandbox/linux/tests/
unit_tests.cc 81 if (!fcntl(2, F_SETFL, O_NONBLOCK)) {
189 const int fcntl_ret = fcntl(fds[0], F_SETFL, O_NONBLOCK);
  /external/dnsmasq/src/
log.c 132 fcntl(log_fd, F_SETFL, flags | O_NONBLOCK);
419 fcntl(log_fd, F_SETFL, flags & ~O_NONBLOCK);
netlink.c 244 fcntl(daemon->netlinkfd, F_SETFL, flags | O_NONBLOCK) == -1)
257 fcntl(daemon->netlinkfd, F_SETFL, flags);
  /external/qemu/util/
oslib-posix.c 159 fcntl(fd, F_SETFL, f & ~O_NONBLOCK);
166 fcntl(fd, F_SETFL, f | O_NONBLOCK);
  /external/valgrind/main/auxprogs/
valgrind-listener.c 109 res = fcntl(sd, F_SETFL, res | O_NONBLOCK);
120 res = fcntl(sd, F_SETFL, res & ~O_NONBLOCK);
  /external/valgrind/main/memcheck/tests/linux/
timerfd-syscall.c 300 fcntl(tfd, F_SETFL, fcntl(tfd, F_GETFL, 0) | O_NONBLOCK);
310 fcntl(tfd, F_SETFL, fcntl(tfd, F_GETFL, 0) & ~O_NONBLOCK);
  /external/wpa_supplicant_8/src/wps/
http_server.c 255 if (fcntl(srv->fd, F_SETFL, O_NONBLOCK) < 0)
282 if (fcntl(srv->fd, F_SETFL, O_NONBLOCK) < 0)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pty.py 88 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags | os.O_NONBLOCK)
96 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pty.py 88 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags | os.O_NONBLOCK)
96 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags)
  /development/samples/ToyVpn/server/linux/
ToyVpnServer.cpp 199 fcntl(tunnel, F_SETFL, O_NONBLOCK);
  /device/samsung/manta/libsensors/
IioSensorBase.cpp 87 fcntl(mDataFd, F_SETFL, flags | O_NONBLOCK);
sensors.cpp 208 fcntl(wakeFds[0], F_SETFL, O_NONBLOCK);
209 fcntl(wakeFds[1], F_SETFL, O_NONBLOCK);
  /external/chromium_org/build/android/pylib/
cmd_helper.py 144 fcntl.fcntl(child_fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)
  /external/chromium_org/third_party/libevent/
evutil.c 171 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
  /external/lldb/source/Host/common/
Terminal.cpp 177 fcntl (fd, F_SETFL, m_tflags);
  /external/wpa_supplicant_8/src/drivers/
rfkill.c 118 if (fcntl(rfkill->fd, F_SETFL, O_NONBLOCK) < 0) {
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 99 Libcore.os.fcntlLong(fd, F_SETFL, flags);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
fcntl.h 77 #define F_SETFL 4 /* Set file status flags. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
fcntl.h 77 #define F_SETFL 4 /* Set file status flags. */
  /development/ndk/sources/android/libportable/arch-mips/
fcntl.c 95 native_cmd = F_SETFL;
379 case F_SETFL:
  /external/chromium_org/sandbox/linux/bpf_dsl/
bpf_dsl_unittest.cc 305 .Case(F_SETFL, Error(EPERM))
325 ASSERT_SYSCALL_RESULT(-EPERM, fcntl, sock_fd.get(), F_SETFL, O_RDONLY);
  /external/chromium_org/tools/android/forwarder/
forwarder.cc 279 fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) | O_NONBLOCK);
280 fcntl(host_socket, F_SETFL, fcntl(host_socket, F_GETFL) | O_NONBLOCK);
  /frameworks/base/core/jni/
android_view_InputQueue.cpp 191 fcntl(pipeFds[0], F_SETFL, O_NONBLOCK);
192 fcntl(pipeFds[1], F_SETFL, O_NONBLOCK);
  /hardware/akm/AK8975_FS/libsensors/
sensors.cpp 178 fcntl(wakeFds[0], F_SETFL, O_NONBLOCK);
179 fcntl(wakeFds[1], F_SETFL, O_NONBLOCK);

Completed in 3439 milliseconds

1 2 3 45 6 7 8 91011