Searched refs:O_NONBLOCK (Results 1 - 25 of 204) sorted by relevance

123456789

/external/strace/xlat/
H A Ddelete_module_flags.h4 #if defined(O_NONBLOCK) || (defined(HAVE_DECL_O_NONBLOCK) && HAVE_DECL_O_NONBLOCK)
5 XLAT(O_NONBLOCK),
H A Dinotify_init_flags.h4 #if defined(O_NONBLOCK) || (defined(HAVE_DECL_O_NONBLOCK) && HAVE_DECL_O_NONBLOCK)
5 XLAT(O_NONBLOCK),
H A Dopen_mode_flags.h19 #if defined(O_NONBLOCK) || (defined(HAVE_DECL_O_NONBLOCK) && HAVE_DECL_O_NONBLOCK)
20 XLAT(O_NONBLOCK),
34 #if defined(O_NDELAY) && (O_NDELAY != O_NONBLOCK)
/external/bison/lib/
H A Dpipe2.c70 if ((flags & ~(O_CLOEXEC | O_NONBLOCK | O_BINARY | O_TEXT)) != 0)
79 if (_pipe (fd, 4096, flags & ~O_NONBLOCK) < 0)
86 /* O_NONBLOCK handling.
87 On native Windows platforms, O_NONBLOCK is defined by gnulib. Use the
90 if (flags & O_NONBLOCK)
98 verify (O_NONBLOCK == 0);
111 says that initially, the O_NONBLOCK and FD_CLOEXEC flags are cleared on
114 /* O_NONBLOCK handling.
115 On Unix platforms, O_NONBLOCK is defined by the system. Use fcntl(). */
116 if (flags & O_NONBLOCK)
[all...]
H A Dfcntl.in.h231 #ifndef O_NONBLOCK
232 # define O_NONBLOCK O_NDELAY
236 value of O_NONBLOCK. Otherwise, O_NONBLOCK is defined (above) to O_NDELAY
239 # if O_NONBLOCK
243 # undef O_NONBLOCK
244 # define O_NONBLOCK 0x40000000
/external/e2fsprogs/lib/e2p/
H A Dfgetversion.c34 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE)
36 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
H A Dfsetversion.c34 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE)
36 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
H A Dfgetflags.c38 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE)
40 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
H A Dfsetflags.c47 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE)
49 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dpoll_posix.c39 ret = fcntl(pipefd[1], F_SETFL, ret | O_NONBLOCK);
/external/kernel-headers/original/uapi/asm-generic/
H A Dfcntl.h37 #ifndef O_NONBLOCK
38 #define O_NONBLOCK 00004000 macro
96 #define O_NDELAY O_NONBLOCK
/external/kernel-headers/original/uapi/linux/
H A Dsignalfd.h12 /* For O_CLOEXEC and O_NONBLOCK */
17 #define SFD_NONBLOCK O_NONBLOCK
/external/chromium_org/base/
H A Dasync_socket_io_handler_posix.cc78 if (!(value & O_NONBLOCK)) {
80 if (fcntl(socket, F_SETFL, O_NONBLOCK) == -1) {
/external/chromium_org/remoting/host/
H A Dipc_util_posix.cc34 if (fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK) == -1 ||
35 fcntl(pipe_fds[1], F_SETFL, O_NONBLOCK) == -1) {
36 PLOG(ERROR) << "fcntl(O_NONBLOCK)";
/external/chromium_org/content/renderer/pepper/
H A Dpepper_broker_unittest.cc46 ASSERT_EQ(0, fcntl(fds[1], F_SETFL, O_NONBLOCK));
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
H A Dstream_node.cc24 if (open_flags & O_NONBLOCK)
/external/chromium_org/tools/android/forwarder2/
H A Dpipe_notifier.cc24 fcntl(sender_fd_, F_SETFL, O_NONBLOCK);
/external/e2fsprogs/include/nonunix/
H A Dunistd.h11 #define O_NONBLOCK 0 macro
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dfcntl.h15 #define O_NONBLOCK 0x0080 macro
/external/chromium_org/mojo/embedder/
H A Dplatform_channel_pair_posix.cc41 PCHECK(fcntl(fds[0], F_SETFL, O_NONBLOCK) == 0);
42 PCHECK(fcntl(fds[1], F_SETFL, O_NONBLOCK) == 0);
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dsocket_helper.c92 flags &= ~O_NONBLOCK;
94 flags |= O_NONBLOCK;
/external/chromium_org/third_party/libevent/sample/
H A Devent-test.c108 socket = open (fifo, O_RDWR | O_NONBLOCK, 0);
110 socket = open (fifo, O_RDONLY | O_NONBLOCK, 0);
/external/chromium_org/mojo/common/test/
H A Dtest_utils_posix.cc23 fcntl(handle.fd, F_SETFL, original_flags & (~O_NONBLOCK)) != 0) {
44 fcntl(handle.fd, F_SETFL, original_flags & (~O_NONBLOCK)) != 0) {
/external/chromium_org/sandbox/linux/services/
H A Dscoped_process_unittest.cc87 ASSERT_EQ(0, fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK));
122 ASSERT_EQ(0, fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_network.c182 fcntl(s, F_SETFL, old & ~O_NONBLOCK);
184 fcntl(s, F_SETFL, old | O_NONBLOCK);

Completed in 581 milliseconds

123456789