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

<<111213141516171819

  /device/lge/hammerhead/libsensors/
sensors.cpp 233 fcntl(wakeFds[0], F_SETFL, O_NONBLOCK);
234 fcntl(wakeFds[1], F_SETFL, O_NONBLOCK);
  /external/chromium_org/components/nacl/loader/nonsfi/
nonsfi_sandbox_unittest.cc 281 BPF_ASSERT_EQ(0, fcntl(fd, F_SETFL, O_RDWR | O_NONBLOCK));
282 BPF_ASSERT_EQ(O_NONBLOCK, fcntl(fd, F_GETFL));
nonsfi_sandbox.cc 55 // libevent and SetNonBlocking. As the latter mix O_NONBLOCK to
57 // addition to O_NONBLOCK.
58 const unsigned long denied_mask = ~(O_ACCMODE | O_NONBLOCK);
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/bsdi/
SDL_syscdrom.c 200 cdfd = open(drive, (O_RDONLY|O_EXCL|O_NONBLOCK), 0);
340 return(open(SDL_cdlist[drive], O_RDONLY | O_NONBLOCK | O_EXCL, 0));
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/linux/
SDL_syscdrom.c 132 cdfd = open(drive, (O_RDONLY|O_NONBLOCK), 0);
397 return(open(SDL_cdlist[drive], (O_RDONLY|O_NONBLOCK), 0));
  /external/qemu/telephony/
sysdeps_posix.c 602 fcntl(channel->fd, F_SETFL, O_NONBLOCK);
641 fcntl(channel->fd, F_SETFL, O_NONBLOCK);
  /hardware/invensense/65xx/libsensors_iio/
sensors_mpl.cpp 164 fcntl(wakeFds[0], F_SETFL, O_NONBLOCK);
165 fcntl(wakeFds[1], F_SETFL, O_NONBLOCK);
  /system/core/libutils/
Looper.cpp 79 result = fcntl(mWakeReadPipeFd, F_SETFL, O_NONBLOCK);
83 result = fcntl(mWakeWritePipeFd, F_SETFL, O_NONBLOCK);
  /bionic/libc/include/sys/
socket.h 68 #define SOCK_NONBLOCK O_NONBLOCK
  /development/ndk/platforms/android-L/include/sys/
socket.h 68 #define SOCK_NONBLOCK O_NONBLOCK
  /development/ndk/sources/android/libportable/arch-mips/
socket.c 36 /* LTP defaults to using O_NONBLOCK if SOCK_NONBLOCK is not defined. */
41 # define SOCK_NONBLOCK O_NONBLOCK
  /development/ndk/sources/android/libportable/arch-mips64/
socket.c 36 /* LTP defaults to using O_NONBLOCK if SOCK_NONBLOCK is not defined. */
41 # define SOCK_NONBLOCK O_NONBLOCK
  /device/asus/fugu/libaudio/
AudioHotplugThread.cpp 295 if (fcntl(inotifyFD, F_SETFL, flags | O_NONBLOCK) == -1) {
  /external/chromium_org/base/message_loop/
message_pump_libevent.cc 50 return fcntl(fd, F_SETFL, flags | O_NONBLOCK);
  /external/chromium_org/chrome/test/chromedriver/net/
port_server_unittest.cc 70 ASSERT_GE(fcntl(server_sock_fd, F_SETFL, O_NONBLOCK), 0);
  /external/chromium_org/content/browser/gamepad/
gamepad_platform_data_fetcher_linux.cc 139 device_fd = HANDLE_EINTR(open(node_path.c_str(), O_RDONLY | O_NONBLOCK));
  /external/chromium_org/device/hid/
hid_connection_linux.cc 74 fcntl(device_file.GetPlatformFile(), F_GETFL) | O_NONBLOCK)) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_handle.cc 148 const int mutable_flags = O_ASYNC | O_NONBLOCK;
  /external/chromium_org/remoting/host/linux/
audio_pipe_reader.cc 133 // Set O_NONBLOCK flag.
134 if (HANDLE_EINTR(fcntl(pipe_.GetPlatformFile(), F_SETFL, O_NONBLOCK)) < 0) {
  /external/chromium_org/third_party/libevent/test/
regress_dns.c 326 fcntl(sock, F_SETFL, O_NONBLOCK);
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_udev.c 93 r = fcntl(udev_monitor_fd, F_SETFL, r | O_NONBLOCK);
  /external/chromium_org/third_party/skia/experimental/Networking/
SkSockets.cpp 73 fcntl(sockfd, F_SETFL, flags | O_NONBLOCK);
  /external/chromium_org/ui/events/ozone/evdev/
event_factory_evdev.cc 94 int fd = open(path.value().c_str(), O_RDONLY | O_NONBLOCK);
  /external/dhcpcd/
common.c 129 fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
  /external/dnsmasq/src/
netlink.c 244 fcntl(daemon->netlinkfd, F_SETFL, flags | O_NONBLOCK) == -1)

Completed in 4293 milliseconds

<<111213141516171819