/external/bison/lib/ |
D | pipe2.c | 70 if ((flags & ~(O_CLOEXEC | O_NONBLOCK | O_BINARY | O_TEXT)) != 0) in pipe2() 79 if (_pipe (fd, 4096, flags & ~O_NONBLOCK) < 0) in pipe2() 90 if (flags & O_NONBLOCK) in pipe2() 98 verify (O_NONBLOCK == 0); in pipe2() 116 if (flags & O_NONBLOCK) in pipe2() 121 || fcntl (fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1 in pipe2() 123 || fcntl (fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1) in pipe2()
|
D | fcntl.in.h | 231 #ifndef O_NONBLOCK 232 # define O_NONBLOCK O_NDELAY 239 # if O_NONBLOCK 243 # undef O_NONBLOCK 244 # define O_NONBLOCK 0x40000000
|
/external/libvncserver/examples/ |
D | 1instance.c | 23 str->fd=open(str->filename,O_NONBLOCK|O_RDONLY); in open_control_file() 25 str->fd=open(str->filename,O_NONBLOCK|O_WRONLY); in open_control_file() 28 str->fd=open(str->filename,O_NONBLOCK|O_RDONLY); in open_control_file() 66 str->fd=open(str->filename,O_NONBLOCK|O_RDONLY); in get_next_message()
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | fcntl.h | 37 #ifndef O_NONBLOCK 38 #define O_NONBLOCK 00004000 macro 96 #define O_NDELAY O_NONBLOCK
|
/external/strace/xlat/ |
D | inotify_init_flags.h | 4 #if defined(O_NONBLOCK) || (defined(HAVE_DECL_O_NONBLOCK) && HAVE_DECL_O_NONBLOCK) 5 XLAT(O_NONBLOCK),
|
D | delete_module_flags.h | 4 #if defined(O_NONBLOCK) || (defined(HAVE_DECL_O_NONBLOCK) && HAVE_DECL_O_NONBLOCK) 5 XLAT(O_NONBLOCK),
|
D | open_mode_flags.h | 19 #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)
|
D | open_mode_flags.in | 6 O_NONBLOCK 11 #if defined(O_NDELAY) && (O_NDELAY != O_NONBLOCK)
|
D | inotify_init_flags.in | 1 O_NONBLOCK
|
D | delete_module_flags.in | 1 O_NONBLOCK
|
/external/toybox/toys/other/ |
D | rmmod.c | 27 unsigned int flags = O_NONBLOCK|O_EXCL; in rmmod_main() 39 if (toys.optflags & FLAG_w) flags &= ~O_NONBLOCK; in rmmod_main()
|
/external/e2fsprogs/lib/e2p/ |
D | fsetversion.c | 34 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE) 36 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
|
D | fgetversion.c | 34 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE) 36 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
|
D | fgetflags.c | 38 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE) 40 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
|
D | fsetflags.c | 47 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE) 49 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
|
/external/bison/darwin-lib/ |
D | fcntl.h | 543 #ifndef O_NONBLOCK 544 # define O_NONBLOCK O_NDELAY macro 551 # if O_NONBLOCK 555 # undef O_NONBLOCK 556 # define O_NONBLOCK 0x40000000
|
/external/bison/linux-lib/ |
D | fcntl.h | 543 #ifndef O_NONBLOCK 544 # define O_NONBLOCK O_NDELAY macro 551 # if O_NONBLOCK 555 # undef O_NONBLOCK 556 # define O_NONBLOCK 0x40000000
|
/external/boringssl/src/crypto/bio/ |
D | socket_helper.c | 94 flags &= ~O_NONBLOCK; in bio_socket_nbio() 96 flags |= O_NONBLOCK; in bio_socket_nbio()
|
/external/valgrind/memcheck/tests/linux/ |
D | timerfd-syscall.stderr.exp | 21 O_NONBLOCK test ... 44 O_NONBLOCK test ...
|
/external/parameter-framework/remote-processor/ |
D | Socket.cpp | 102 iFlags |= O_NONBLOCK; in setNonBlocking() 105 iFlags &= ~O_NONBLOCK; in setNonBlocking()
|
/external/selinux/policycoreutils/newrole/ |
D | newrole.c | 696 fd = open(ttyn, O_RDWR | O_NONBLOCK); in relabel_tty() 701 fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) & ~O_NONBLOCK); in relabel_tty() 1225 fd = open(ttyn, O_RDWR | O_NONBLOCK); in main() 1228 fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) & ~O_NONBLOCK); in main() 1229 fd = open(ttyn, O_RDWR | O_NONBLOCK); in main() 1232 fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) & ~O_NONBLOCK); in main() 1233 fd = open(ttyn, O_RDWR | O_NONBLOCK); in main() 1236 fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) & ~O_NONBLOCK); in main()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_network.c | 182 fcntl(s, F_SETFL, old & ~O_NONBLOCK); in u_socket_block() 184 fcntl(s, F_SETFL, old | O_NONBLOCK); in u_socket_block()
|
/external/strace/tests/ |
D | pipe.expected | 2 pipe2\(\[0, 1\], O_NONBLOCK\) += 0
|
D | pipe.c | 21 if (pipe2(fds, O_NONBLOCK) || fds[0] != 0 || fds[1] != 1) in main()
|
/external/dhcpcd/ |
D | bpf.c | 64 fd = open(_PATH_BPF, O_RDWR | O_NONBLOCK); in open_socket() 72 fd = open(device, O_RDWR | O_NONBLOCK); in open_socket()
|