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

1 2 3 4 5 67 8 91011

  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_uart.c 191 ret = fcntl(gComPortContext.nHandle, F_SETFL, 0); /* Makes the read blocking (default). */
  /external/libnl/lib/
socket.c 424 if (fcntl(sk->s_fd, F_SETFL, O_NONBLOCK) < 0)
  /external/libselinux/src/
avc_internal.c 70 if (!blocking && fcntl(fd, F_SETFL, O_NONBLOCK)) {
  /external/oprofile/daemon/liblegacy/
init.c 127 if (fcntl(devfd, F_SETFL, fcntl(devfd, F_GETFL) | O_NONBLOCK) < 0) {
  /external/ppp/pppd/
tty.c 584 || fcntl(ttyfd, F_SETFL, fdflags & ~O_NONBLOCK) < 0)
1054 || fcntl(pty_master, F_SETFL, flags | O_NONBLOCK) == -1)
1058 || fcntl(ifd, F_SETFL, flags | O_NONBLOCK) == -1)
1063 || fcntl(ofd, F_SETFL, flags | O_NONBLOCK) == -1)
    [all...]
sys-linux.c 476 if (flags == -1 || fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
521 fcntl(fd, F_SETFL, initfdflags | O_NONBLOCK) == -1) {
574 if (initfdflags != -1 && fcntl(tty_fd, F_SETFL, initfdflags) < 0) {
630 || fcntl(ppp_dev_fd, F_SETFL, flags | O_NONBLOCK) == -1)
    [all...]
  /external/qemu/distrib/libselinux/src/
avc_internal.c 70 if (!blocking && fcntl(fd, F_SETFL, O_NONBLOCK)) {
  /external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
SDL_dspaudio.c 192 if ( fcntl(audio_fd, F_SETFL, flags) < 0 ) {
  /external/skia/experimental/Networking/
SkSockets.cpp 73 fcntl(sockfd, F_SETFL, flags | O_NONBLOCK);
  /frameworks/base/libs/common_time/
diag_thread.cpp 40 if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) < 0) {
  /libcore/luni/src/main/native/
NetworkUtilities.cpp 219 int rc = fcntl(fd, F_SETFL, flags);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 137 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFL, l_flags)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 137 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFL, l_flags)
  /system/core/healthd/
healthd.cpp 245 fcntl(uevent_fd, F_SETFL, O_NONBLOCK);
  /device/htc/flounder/sensor_hub/libsensors/
sensors.cpp 661 fcntl(wakeFds[0], F_SETFL, O_NONBLOCK);
662 fcntl(wakeFds[1], F_SETFL, O_NONBLOCK);
  /external/chromium_org/ipc/
ipc_channel_posix.cc 218 if (fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK) == -1 ||
219 fcntl(pipe_fds[1], F_SETFL, O_NONBLOCK) == -1) {
    [all...]
ipc_channel_posix_unittest.cc 152 ASSERT_GE(fcntl(socket_fd, F_SETFL, O_NONBLOCK), 0);
221 ASSERT_GE(fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK), 0);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 149 fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)
152 fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)
  /external/libedit/src/
read.c 151 #if defined(F_SETFL) && defined(O_NDELAY)
155 if (fcntl(fd, F_SETFL, e & ~O_NDELAY) == -1)
159 #endif /* F_SETFL && O_NDELAY */
  /external/netcat/
netcat.c 661 if (fcntl(s, F_SETFL, flags | O_NONBLOCK) == -1)
682 if (timeout != -1 && fcntl(s, F_SETFL, flags) == -1)
  /external/qemu/
posix-aio-compat.c 647 fcntl(s->rfd, F_SETFL, O_NONBLOCK);
648 fcntl(s->wfd, F_SETFL, O_NONBLOCK);
  /external/qemu/slirp/
misc.c 792 fcntl(fd, F_SETFL, opt);
812 fcntl(fd, F_SETFL, opt);
  /external/qemu/slirp-android/
misc.c 758 fcntl(fd, F_SETFL, opt);
778 fcntl(fd, F_SETFL, opt);
  /external/wpa_supplicant_8/src/wps/
wps_upnp_ssdp.c 748 if (fcntl(sd, F_SETFL, O_NONBLOCK) != 0)
892 if (fcntl(sd, F_SETFL, O_NONBLOCK) != 0) {
  /frameworks/base/core/jni/
android_app_NativeActivity.cpp 300 int result = fcntl(code->mainWorkRead, F_SETFL, O_NONBLOCK);
303 result = fcntl(code->mainWorkWrite, F_SETFL, O_NONBLOCK);

Completed in 792 milliseconds

1 2 3 4 5 67 8 91011