/external/strace/xlat/ |
D | open_mode_flags.in | 90 #if defined O_NDELAY && O_NDELAY & O_NONBLOCK /* O_NDELAY is unusual */ 93 /* On sparc32 O_NDELAY is erroneously defined to (0x0004 | O_NONBLOCK). */ 94 /* On many architectures O_NDELAY is defined to O_NONBLOCK. */ 96 # undef O_NDELAY 98 #endif /* O_NDELAY & O_NONBLOCK */ 101 O_NDELAY 04 103 O_NDELAY
|
D | open_mode_flags.h | 264 #if defined O_NDELAY && O_NDELAY & O_NONBLOCK 267 # undef O_NDELAY 271 #if defined(O_NDELAY) || (defined(HAVE_DECL_O_NDELAY) && HAVE_DECL_O_NDELAY) 273 static_assert((O_NDELAY) == (04), "O_NDELAY != 04"); 276 # define O_NDELAY 04 686 #if defined O_NDELAY && O_NDELAY & O_NONBLOCK 692 # undef O_NDELAY 697 XLAT(O_NDELAY), 699 #if defined(O_NDELAY) || (defined(HAVE_DECL_O_NDELAY) && HAVE_DECL_O_NDELAY) 700 XLAT(O_NDELAY),
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl01.c | 102 if (fcntl(fd[2], F_SETFL, O_NDELAY) == -1) in main() 106 if ((flags & (O_NDELAY | O_WRONLY)) == 0) in main() 108 flags, O_NDELAY | O_WRONLY); in main() 120 if (fcntl(fd[2], F_SETFL, O_NDELAY | O_APPEND) < 0) in main() 124 if ((flags & (O_NDELAY | O_APPEND | O_WRONLY)) == 0) in main() 127 O_NDELAY | O_APPEND | O_SYNC | O_WRONLY); in main()
|
D | fcntl08.c | 67 TEST(fcntl(fd, F_SETFL, O_NDELAY | O_APPEND | O_NONBLOCK)); in main()
|
D | fcntl16.c | 710 if (NO_NFS && run_test(O_CREAT | O_RDWR | O_TRUNC | O_NDELAY, in main()
|
/external/toybox/toys/net/ |
D | microcom.c | 43 TT.fd = xopen(*toys.optargs, O_RDWR | O_NOCTTY | O_NDELAY); in microcom_main() 44 if (-1==(i = fcntl(TT.fd, F_GETFL, 0)) || fcntl(TT.fd, F_SETFL, i&~O_NDELAY) in microcom_main()
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | fcntl.h | 96 #ifndef O_NDELAY 97 #define O_NDELAY O_NONBLOCK macro
|
/external/libcups/scheduler/ |
D | cups-exec.c | 117 fcntl(3, F_SETFL, O_NDELAY); in main() 118 fcntl(4, F_SETFL, O_NDELAY); in main()
|
D | process.c | 722 fcntl(3, F_SETFL, O_NDELAY); in cupsdStartProcess() 729 fcntl(4, F_SETFL, O_NDELAY); in cupsdStartProcess()
|
D | cupsfilter.c | 882 fcntl(3, F_SETFL, O_NDELAY); in exec_filter() 889 fcntl(4, F_SETFL, O_NDELAY); in exec_filter()
|
/external/ltp/testcases/kernel/syscalls/kill/ |
D | kill02.c | 727 || (fcntl(pipe1_fd[0], F_SETFL, O_NDELAY) == -1)) { in setup() 733 || (fcntl(pipe2_fd[0], F_SETFL, O_NDELAY) == -1)) { in setup() 739 || (fcntl(pipeA_fd[0], F_SETFL, O_NDELAY) == -1)) { in setup() 745 || (fcntl(pipeB_fd[0], F_SETFL, O_NDELAY) == -1)) { in setup()
|
/external/ltp/testcases/kernel/fs/doio/ |
D | open_flags.c | 141 #if O_NDELAY 142 {"O_NDELAY", O_NDELAY},
|
D | growfiles.c | 285 O_RDWR | O_CREAT | O_NDELAY, 289 O_RDWR | O_CREAT | O_NDELAY | O_SYNC, 290 O_RDWR | O_CREAT | O_NDELAY | O_SYNC | O_BIG, 308 O_RDWR | O_CREAT | O_NDELAY, 310 O_RDWR | O_CREAT | O_SYNC | O_NDELAY, 311 O_RDWR | O_CREAT | O_APPEND | O_NDELAY,
|
/external/mtools/ |
D | devices.c | 376 {"/dev/rdsk/c0t4d0s2", 'J', RJAZ(O_NDELAY)}, 377 {"/dev/rdsk/c0t5d0s2", 'Z', RZIP(O_NDELAY)}, 485 {"/dev/rsd4c", 'J', RJAZ(O_NDELAY)}, 486 {"/dev/rsd5c", 'Z', RZIP(O_NDELAY)}, 857 {"/dev/rfp020", 'A', 12,O_NDELAY,40,2, 9, 0, MDEF_ARG},
|
D | scsi.c | 95 #ifdef O_NDELAY in scsi_open() 96 | O_NDELAY in scsi_open()
|
D | config.c | 110 #ifdef O_NDELAY 111 { "nodelay", O_NDELAY }, 897 #ifdef O_NDELAY in mtoolstest() 898 if((dev->mode & O_NDELAY)) in mtoolstest()
|
D | mzip.c | 332 #ifdef O_NDELAY in mzip() 333 | O_NDELAY in mzip()
|
/external/python/cpython2/Lib/ |
D | 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/plat-irix5/ |
D | FILE.py | 161 O_NDELAY = 0x04 variable
|
/external/python/cpython2/RISCOS/Modules/ |
D | riscosmodule.c | 452 #ifdef O_NDELAY in all_ins() 453 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1; in all_ins()
|
/external/toybox/toys/pending/ |
D | getty.c | 69 xopen_stdio(TT.tty_name, O_RDWR|O_NDELAY|O_CLOEXEC); in open_tty()
|
/external/linux-kselftest/tools/testing/selftests/net/ |
D | tcp_mmap.c | 144 fcntl(fd, F_SETFL, O_NDELAY); in child_thread()
|
/external/rust/crates/libc/src/unix/linux_like/linux/uclibc/mips/ |
D | mod.rs | 63 pub const O_NDELAY: ::c_int = 0x80; constant
|
/external/python/cpython2/Lib/plat-irix6/ |
D | FILE.py | 568 O_NDELAY = 0x04 variable
|
/external/libchrome/base/files/ |
D | file_posix.cc | 485 open_flags |= O_NOCTTY | O_NDELAY; in DoInitialize()
|