HomeSort by relevance Sort by last modified time
    Searched refs:O_NONBLOCK (Results 351 - 375 of 470) sorted by null

<<111213141516171819

  /external/valgrind/main/auxprogs/
valgrind-di-server.c 510 res = fcntl(sd, F_SETFL, res & ~O_NONBLOCK);
523 res = fcntl(sd, F_SETFL, res | O_NONBLOCK);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_unix.c 498 flags |= O_NONBLOCK;
500 wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
1010 flags |= O_NONBLOCK;
1012 wpa_printf(MSG_INFO, "fcntl(ctrl, O_NONBLOCK): %s",
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp 202 flags &= ~O_NONBLOCK;
204 flags |= O_NONBLOCK;
  /external/mdnsresponder/mDNSPosix/
mDNSPosix.c 832 err = fcntl(*sktPtr, F_SETFL, err | O_NONBLOCK);
    [all...]
  /frameworks/native/services/inputflinger/
EventHub.cpp 207 result = fcntl(mWakeReadPipeFd, F_SETFL, O_NONBLOCK);
211 result = fcntl(mWakeWritePipeFd, F_SETFL, O_NONBLOCK);
    [all...]
  /bionic/libc/bionic/
libc_logging.cpp 462 if (fcntl(log_fd, F_SETFL, O_NONBLOCK) == -1) {
  /bootable/recovery/minadbd/
fdevent.c 603 fcntl(fd, F_SETFL, O_NONBLOCK);
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_socket.c 570 fcntl(sock_fd, F_SETFL, socket_flag | O_NONBLOCK);
  /external/blktrace/
blktrace.c 929 fcntl(nc->fd, F_SETFL, fl | O_NONBLOCK);
931 fcntl(nc->fd, F_SETFL, fl & ~O_NONBLOCK);
1218 fd = my_open(path, O_RDONLY | O_NONBLOCK);
    [all...]
  /external/bluetooth/bluedroid/btif/co/
bta_fs_co.c 348 if ((fd = open(p_path, oflags | O_NONBLOCK, 0666)) >= 0)
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_pan.c 432 fcntl(fd, F_SETFL, flags | O_NONBLOCK);
  /external/chromium_org/ui/events/ozone/evdev/
touch_event_converter_evdev_unittest.cc 29 return fcntl(fd, F_SETFL, flags | O_NONBLOCK);
  /external/chromium_org/v8/src/
d8-posix.cc 300 if (fcntl(child_fd, F_SETFL, O_NONBLOCK) != 0) {
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 148 fd = open("/dev/random", O_RDONLY | O_NONBLOCK);
  /external/netcat/
netcat.c 661 if (fcntl(s, F_SETFL, flags | O_NONBLOCK) == -1)
  /external/oprofile/module/
oprofile.c 330 /* Non-obvious. If O_NONBLOCK is set, that means
340 if (!(file->f_flags & O_NONBLOCK))
  /external/qemu/distrib/sdl-1.2.15/src/joystick/bsd/
SDL_sysjoystick.c 391 fcntl(fd, F_SETFL, O_NONBLOCK);
  /external/qemu/net/
net-android.c 1261 fcntl(fd, F_SETFL, O_NONBLOCK);
    [all...]
net.c 1158 fcntl(fd, F_SETFL, O_NONBLOCK);
1293 fcntl(fd, F_SETFL, O_NONBLOCK);
1326 fcntl(fd, F_SETFL, O_NONBLOCK);
    [all...]
  /external/wpa_supplicant_8/src/common/
wpa_ctrl.c 205 flags |= O_NONBLOCK;
207 perror("fcntl(ctrl->s, O_NONBLOCK)");
  /frameworks/base/tools/orientationplot/
orientationplot.py 41 fcntl.fcntl(stream, fcntl.F_SETFL, os.O_NONBLOCK)
  /hardware/libhardware_legacy/wifi/
wifi.c 158 ret = delete_module(modname, O_NONBLOCK | O_EXCL);
  /libcore/luni/src/main/java/android/system/
OsConstants.java 338 public static final int O_NONBLOCK = placeholder();
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 653 flags = flags | os.O_NONBLOCK
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_signal.py 273 flags = flags | os.O_NONBLOCK

Completed in 2814 milliseconds

<<111213141516171819