HomeSort by relevance Sort by last modified time
    Searched refs:O_NDELAY (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/strace/xlat/
open_mode_flags.h 2 #if defined(O_NDELAY) && (O_NDELAY != O_NONBLOCK)
42 #if defined(O_NDELAY) && (O_NDELAY != O_NONBLOCK)
43 #if defined(O_NDELAY) || (defined(HAVE_DECL_O_NDELAY) && HAVE_DECL_O_NDELAY)
44 XLAT(O_NDELAY),
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl01.c 16 * 2. Checking F_SETFL cmd with each valid flag (O_NDELAY, O_APPEND).
102 if (fcntl(fd[2], F_SETFL, O_NDELAY) == -1)
103 tst_resm(TBROK | TERRNO, "fcntl(.., O_NDELAY) failed");
106 if ((flags & (O_NDELAY | O_WRONLY)) == 0)
108 flags, O_NDELAY | O_WRONLY);
120 if (fcntl(fd[2], F_SETFL, O_NDELAY | O_APPEND) < 0)
121 tst_resm(TFAIL, "fcntl(.., O_NDELAY|O_APPEND) failed");
124 if ((flags & (O_NDELAY | O_APPEND | O_WRONLY)) == 0)
127 O_NDELAY | O_APPEND | O_SYNC | O_WRONLY);
fcntl08.c 67 TEST(fcntl(fd, F_SETFL, O_NDELAY | O_APPEND | O_NONBLOCK));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 87 #ifndef O_NDELAY
88 #define O_NDELAY O_NONBLOCK
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 80 #ifndef O_NDELAY
81 #define O_NDELAY O_NONBLOCK
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 96 #ifndef O_NDELAY
97 #define O_NDELAY O_NONBLOCK
  /external/toybox/toys/net/
microcom.c 68 // Open with O_NDELAY, but switch back to blocking for reads.
69 TT.fd = xopen(*toys.optargs, O_RDWR | O_NOCTTY | O_NDELAY);
70 if (-1==(i = fcntl(TT.fd, F_GETFL, 0)) || fcntl(TT.fd, F_SETFL, i&~O_NDELAY))
  /external/ltp/testcases/kernel/fs/doio/
open_flags.c 141 #if O_NDELAY
142 {"O_NDELAY", O_NDELAY},
growfiles.c 283 O_RDWR | O_CREAT | O_NDELAY,
287 O_RDWR | O_CREAT | O_NDELAY | O_SYNC,
288 O_RDWR | O_CREAT | O_NDELAY | O_SYNC | O_BIG,
306 O_RDWR | O_CREAT | O_NDELAY,
308 O_RDWR | O_CREAT | O_SYNC | O_NDELAY,
309 O_RDWR | O_CREAT | O_APPEND | O_NDELAY,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 43 #define O_NDELAY O_NONBLOCK
203 # define FNDELAY O_NDELAY
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 44 #define O_NDELAY O_NONBLOCK
218 # define FNDELAY O_NDELAY
  /external/ltp/testcases/kernel/syscalls/kill/
kill02.c 727 || (fcntl(pipe1_fd[0], F_SETFL, O_NDELAY) == -1)) {
733 || (fcntl(pipe2_fd[0], F_SETFL, O_NDELAY) == -1)) {
739 || (fcntl(pipeA_fd[0], F_SETFL, O_NDELAY) == -1)) {
745 || (fcntl(pipeB_fd[0], F_SETFL, O_NDELAY) == -1)) {
  /device/google/contexthub/util/stm32_flash/
uart.c 103 fl = fcntl(uart_handle->fd, F_SETFL, fl & ~O_NDELAY);
flash.c 155 fd = open(dev, O_RDWR | O_NOCTTY | O_NDELAY);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixfile.py 126 if 'n' in which: l_flags = l_flags | os.O_NDELAY
149 if os.O_NDELAY & l_flags: which = which + 'n'
  /external/python/cpython2/Lib/
posixfile.py 126 if 'n' in which: l_flags = l_flags | os.O_NDELAY
149 if os.O_NDELAY & l_flags: which = which + 'n'
  /prebuilts/gdb/darwin-x86/lib/python2.7/
posixfile.py 126 if 'n' in which: l_flags = l_flags | os.O_NDELAY
149 if os.O_NDELAY & l_flags: which = which + 'n'
  /prebuilts/gdb/linux-x86/lib/python2.7/
posixfile.py 126 if 'n' in which: l_flags = l_flags | os.O_NDELAY
149 if os.O_NDELAY & l_flags: which = which + 'n'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 126 if 'n' in which: l_flags = l_flags | os.O_NDELAY
149 if os.O_NDELAY & l_flags: which = which + 'n'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 126 if 'n' in which: l_flags = l_flags | os.O_NDELAY
149 if os.O_NDELAY & l_flags: which = which + 'n'
  /external/syslinux/core/lwip/src/include/lwip/
sockets.h 278 #ifndef O_NDELAY
279 #define O_NDELAY 1 /* same as O_NONBLOCK, for compatibility */
  /external/minijail/linux-x86/
libconstants.gen.c 707 #ifdef O_NDELAY
708 { "O_NDELAY", (unsigned long) O_NDELAY },
709 #endif // O_NDELAY
    [all...]
  /external/python/cpython2/RISCOS/Modules/
riscosmodule.c 452 #ifdef O_NDELAY
453 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
  /external/python/cpython2/Lib/plat-irix5/
FILE.py 161 O_NDELAY = 0x04
  /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 */

Completed in 353 milliseconds

1 2 3 4