HomeSort by: relevance | last modified time | path
    Searched refs:O_NONBLOCK (Results 1 - 25 of 383) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/ibm-public/postfix/dist/src/util/
non_blocking.c 49 #ifndef O_NONBLOCK
52 #define PATTERN O_NONBLOCK
fifo_listen.c 80 if ((fd = open(path, O_RDWR | O_NONBLOCK, 0)) < 0)
83 open_mode = O_RDWR | O_NONBLOCK;
86 open_mode = O_RDONLY | O_NONBLOCK;
fifo_open.c 61 if (open(FIFO_PATH, O_WRONLY | O_NONBLOCK, 0) < 0) {
stream_connect.c 75 if ((fifo = open(path, O_WRONLY | O_NONBLOCK, 0)) < 0)
  /src/external/gpl3/gdb.old/dist/sim/common/
target-newlib-open.c 62 #ifdef O_NONBLOCK
63 { "O_NONBLOCK", O_NONBLOCK, 0x4000 },
  /src/external/gpl3/gdb.old/dist/gdbsupport/
event-pipe.cc 45 if (gdb::fcntl (m_fds[0], F_SETFL, O_NONBLOCK) == -1
46 || gdb::fcntl (m_fds[1], F_SETFL, O_NONBLOCK) == -1)
  /src/external/gpl3/gdb/dist/gdbsupport/
event-pipe.cc 45 if (gdb::fcntl (m_fds[0], F_SETFL, O_NONBLOCK) == -1
46 || gdb::fcntl (m_fds[1], F_SETFL, O_NONBLOCK) == -1)
  /src/external/gpl3/gdb/dist/sim/common/
target-newlib-open.c 62 #ifdef O_NONBLOCK
63 { "O_NONBLOCK", O_NONBLOCK, 0x4000 },
  /src/sys/sys/
eventfd.h 46 #define EFD_NONBLOCK O_NONBLOCK
timerfd.h 47 #define TFD_NONBLOCK O_NONBLOCK
fcntl.h 81 #define O_NONBLOCK 0x00000004 /* no delay */
137 #define O_MASK (O_ACCMODE|O_NONBLOCK|O_APPEND|O_SHLOCK|O_EXLOCK|\
166 #define FNDELAY O_NONBLOCK /* compat */
167 #define O_NDELAY O_NONBLOCK /* compat */
171 #define FNONBLOCK O_NONBLOCK /* kernel */
  /src/lib/libc/compat/sys/
compat_dup3.c 52 if (flags & (O_NONBLOCK|O_NOSIGPIPE)) {
56 e |= flags & (O_NONBLOCK|O_NOSIGPIPE);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/
fcntl.d 82 O_NONBLOCK
163 enum O_NONBLOCK = 0x800; // octal 04000
180 enum O_NDELAY = O_NONBLOCK;
190 enum O_NONBLOCK = 0x10004; // octal 0200004
204 enum O_NDELAY = O_NONBLOCK;
215 enum O_NONBLOCK = 0x0080;
231 enum O_NDELAY = O_NONBLOCK;
241 enum O_NONBLOCK = 0x800; // octal 04000
258 enum O_NDELAY = O_NONBLOCK;
268 enum O_NONBLOCK = 0x800; // octal 0400
    [all...]
  /src/tests/lib/libc/sys/
t_pipe2.c 87 if (flags & O_NONBLOCK) {
88 ATF_REQUIRE((fcntl(fd[0], F_GETFL) & O_NONBLOCK) != 0);
89 ATF_REQUIRE((fcntl(fd[1], F_GETFL) & O_NONBLOCK) != 0);
91 ATF_REQUIRE((fcntl(fd[0], F_GETFL) & O_NONBLOCK) == 0);
92 ATF_REQUIRE((fcntl(fd[1], F_GETFL) & O_NONBLOCK) == 0);
160 run(O_NONBLOCK);
t_socketpair.c 100 ATF_REQUIRE((fcntl(fd[0], F_GETFL) & O_NONBLOCK) != 0);
101 ATF_REQUIRE((fcntl(fd[1], F_GETFL) & O_NONBLOCK) != 0);
103 ATF_REQUIRE((fcntl(fd[0], F_GETFL) & O_NONBLOCK) == 0);
104 ATF_REQUIRE((fcntl(fd[1], F_GETFL) & O_NONBLOCK) == 0);
  /src/external/bsd/ntp/dist/libntp/
socket.c 142 #undef O_NONBLOCK
147 #if defined(O_NONBLOCK) /* POSIX */
148 if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0) {
150 "fcntl(O_NONBLOCK) fails on fd #%d: %m", fd);
  /src/external/bsd/ntp/dist/include/
ntp_io.h 48 * Define FNDELAY and FASYNC using O_NONBLOCK and O_ASYNC if we need
53 # ifdef O_NONBLOCK
54 # define FNDELAY O_NONBLOCK
  /src/tests/kernel/kqueue/read/
t_fifo.c 84 ATF_REQUIRE((rfd = open(fifo_path, O_RDONLY | O_NONBLOCK)) >= 0);
85 ATF_REQUIRE((wfd = open(fifo_path, O_WRONLY | O_NONBLOCK)) >= 0);
127 ATF_REQUIRE((wfd = open(fifo_path, O_WRONLY | O_NONBLOCK)) >= 0);
  /src/usr.bin/tip/
hunt.c 75 FD = open(cp, (O_RDWR | (DC ? O_NONBLOCK : 0)));
  /src/external/bsd/libarchive/dist/tar/test/
test_option_fflags.c 22 fd = open(pathname, O_RDONLY | O_NONBLOCK);
  /src/external/gpl3/gdb/dist/gnulib/import/
fcntl.in.h 325 #ifndef O_NONBLOCK
326 # define O_NONBLOCK O_NDELAY
330 value of O_NONBLOCK. Otherwise, O_NONBLOCK is defined (above) to O_NDELAY
333 # if O_NONBLOCK
337 # undef O_NONBLOCK
338 # define O_NONBLOCK 0x40000000
  /src/external/gpl3/gdb.old/dist/gnulib/import/
fcntl.in.h 325 #ifndef O_NONBLOCK
326 # define O_NONBLOCK O_NDELAY
330 value of O_NONBLOCK. Otherwise, O_NONBLOCK is defined (above) to O_NDELAY
333 # if O_NONBLOCK
337 # undef O_NONBLOCK
338 # define O_NONBLOCK 0x40000000
  /src/sys/compat/linux/common/
linux_mqueue.c 56 O_NONBLOCK);
66 lmp->mq_flags = cvtto_linux_mask(bmp->mq_flags, O_NONBLOCK,
275 nonblock = (attr.mq_flags & O_NONBLOCK);
287 /* Ignore everything, except O_NONBLOCK */
289 mq->mq_attrib.mq_flags |= O_NONBLOCK;
291 mq->mq_attrib.mq_flags &= ~O_NONBLOCK;
  /src/crypto/external/bsd/openssl/dist/crypto/bio/
bio_sock.c 322 # elif defined(F_GETFL) && defined(F_SETFL) && (defined(O_NONBLOCK) || defined(FNDELAY))
331 # if defined(O_NONBLOCK)
332 l &= ~O_NONBLOCK;
337 # if defined(O_NONBLOCK)
338 l |= O_NONBLOCK;
  /src/crypto/external/bsd/openssl.old/dist/crypto/bio/
b_sock.c 306 # elif defined(F_GETFL) && defined(F_SETFL) && (defined(O_NONBLOCK) || defined(FNDELAY))
314 # if defined(O_NONBLOCK)
315 l &= ~O_NONBLOCK;
320 # if defined(O_NONBLOCK)
321 l |= O_NONBLOCK;

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>