/external/bison/m4/ |
D | dup2.m4 | 26 #ifdef FD_CLOEXEC 27 if (fcntl (1, F_SETFD, FD_CLOEXEC) == -1) 32 #ifdef FD_CLOEXEC 33 if (fcntl (1, F_GETFD) != FD_CLOEXEC) 56 haiku*) # on Haiku alpha 2, dup2(1, 1) resets FD_CLOEXEC.
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | pipe_select_interrupter.ipp | 47 #if defined(FD_CLOEXEC) 48 ::fcntl(read_descriptor_, F_SETFD, FD_CLOEXEC); 49 ::fcntl(write_descriptor_, F_SETFD, FD_CLOEXEC); 50 #endif // defined(FD_CLOEXEC)
|
/external/strace/xlat/ |
D | fdflags.h | 11 #if defined(FD_CLOEXEC) || (defined(HAVE_DECL_FD_CLOEXEC) && HAVE_DECL_FD_CLOEXEC) 12 XLAT(FD_CLOEXEC),
|
D | fdflags.in | 1 FD_CLOEXEC
|
/external/bison/lib/ |
D | cloexec.c | 47 int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC); in set_cloexec_flag()
|
D | pipe2.c | 132 || fcntl (fd[1], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1 in pipe2() 134 || fcntl (fd[0], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1) in pipe2()
|
D | fcntl.in.h | 164 #ifndef FD_CLOEXEC 165 # define FD_CLOEXEC 1
|
D | fcntl.c | 257 if (flags < 0 || fcntl (result, F_SETFD, flags | FD_CLOEXEC) == -1) in rpl_fcntl() 279 result = (flags & HANDLE_FLAG_INHERIT) ? 0 : FD_CLOEXEC; in rpl_fcntl()
|
/external/avahi/avahi-core/ |
D | fdutil.c | 39 if (n & FD_CLOEXEC) in avahi_set_cloexec() 42 return fcntl(fd, F_SETFD, n|FD_CLOEXEC); in avahi_set_cloexec()
|
/external/google-breakpad/src/client/linux/crash_generation/ |
D | crash_generation_server.cc | 94 if (fcntl(control_pipe[0], F_SETFD, FD_CLOEXEC)) in Start() 96 if (fcntl(control_pipe[1], F_SETFD, FD_CLOEXEC)) in Start() 145 if (fcntl(fds[1], F_SETFD, FD_CLOEXEC)) in CreateReportChannel()
|
/external/mtpd/ |
D | mtpd.c | 116 fcntl(control, F_SETFD, FD_CLOEXEC); in android_get_control_and_arguments() 172 fcntl(signals[0], F_SETFD, FD_CLOEXEC); in main() 173 fcntl(signals[1], F_SETFD, FD_CLOEXEC); in main() 298 fcntl(the_socket, F_SETFD, FD_CLOEXEC); in create_socket()
|
/external/vboot_reference/cgpt/ |
D | cgpt_nor.c | 214 fcntl(1, F_SETFD, FD_CLOEXEC); in ReadNorFlash() 239 fcntl(1, F_SETFD, FD_CLOEXEC); in WriteNorFlash()
|
/external/strace/tests/ |
D | vfork-f.c | 62 if (fcntl(fds[1], F_SETFD, FD_CLOEXEC)) { in main()
|
/external/toybox/toys/other/ |
D | oneit.c | 76 fcntl(4, F_SETFD, FD_CLOEXEC); in oneit_main()
|
/external/valgrind/memcheck/tests/ |
D | file_locking.c | 51 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0) in open_lock_and_map()
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | fcntl.h | 161 #define FD_CLOEXEC 1 /* actually anything with low bit set goes */ macro
|
/external/avahi/avahi-daemon/ |
D | sd-daemon.c | 111 if (flags & FD_CLOEXEC) in sd_listen_fds() 114 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0) { in sd_listen_fds()
|
/external/dbus/dbus/ |
D | sd-daemon.c | 106 if (flags & FD_CLOEXEC) in sd_listen_fds() 109 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0) { in sd_listen_fds()
|
/external/bison/linux-lib/ |
D | fcntl.h | 476 #ifndef FD_CLOEXEC 477 # define FD_CLOEXEC 1 macro
|
/external/bison/darwin-lib/ |
D | fcntl.h | 476 #ifndef FD_CLOEXEC 477 # define FD_CLOEXEC 1 macro
|
/external/deqp/framework/delibs/deutil/ |
D | deFile.c | 128 …nt newFlags = (flags & DE_FILE_CLOSE_ON_EXEC) ? (oldFlags | FD_CLOEXEC) : (oldFlags & ~FD_CLOEXEC); in deFile_setFlags()
|
/external/boringssl/src/crypto/rand/ |
D | urandom.c | 91 flags |= FD_CLOEXEC; in init_once()
|
/external/autotest/scheduler/ |
D | status_server.py | 107 fcntl.fcntl(self.fileno(), fcntl.F_SETFD, old_flags | fcntl.FD_CLOEXEC)
|
/external/iptables/extensions/ |
D | libxt_set.h | 27 if (fcntl(sockfd, F_SETFD, FD_CLOEXEC) == -1) { in get_version()
|
/external/dhcpcd-6.8.2/ |
D | control.c | 164 fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1) in control_handle1() 220 fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1) in make_sock()
|