Searched refs:FD_CLOEXEC (Results 1 - 25 of 40) sorted by relevance

12

/external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
H A DProcessLauncherQt.cpp114 while (fcntl(sockets[1], F_SETFD, FD_CLOEXEC) == -1) {
130 while (fcntl(sockets[0], F_SETFD, FD_CLOEXEC) == -1) {
/external/kernel-headers/original/asm-generic/
H A Dfcntl.h133 #define FD_CLOEXEC 1 /* actually anything with low bit set goes */ macro
/external/mtpd/
H A Dmtpd.c116 fcntl(control, F_SETFD, FD_CLOEXEC);
172 fcntl(signals[0], F_SETFD, FD_CLOEXEC);
173 fcntl(signals[1], F_SETFD, FD_CLOEXEC);
298 fcntl(the_socket, F_SETFD, FD_CLOEXEC);
/external/valgrind/main/memcheck/tests/
H A Dfile_locking.c51 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0)
/external/qemu/
H A Doslib-posix.c88 fcntl(fd, F_SETFD, f | FD_CLOEXEC);
92 * Creates a pipe with FD_CLOEXEC set on both file descriptors
/external/webkit/Source/WebCore/platform/sql/chromium/
H A DSQLiteFileSystemChromiumPosix.cpp87 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
/external/webkit/Source/WebKit2/Platform/unix/
H A DSharedMemoryUnix.cpp123 while (fcntl(fileDescriptor, F_SETFD, FD_CLOEXEC) == -1) {
216 while ((fcntl(duplicatedHandle, F_SETFD, FD_CLOEXEC | accessModeFile(protection)) == -1)) {
/external/dbus/dbus/
H A Dsd-daemon.c106 if (flags & FD_CLOEXEC)
109 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0) {
/external/chromium/chrome/browser/nacl_host/
H A Dnacl_process_host.cc39 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
/external/dhcpcd/
H A Dcommon.c115 fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1)
/external/e2fsprogs/lib/et/
H A Derror_message.c232 fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
/external/ipsec-tools/
H A Dmain.c69 fcntl(control, F_SETFD, FD_CLOEXEC);
/external/libselinux/src/
H A Davc_internal.c69 fcntl(fd, F_SETFD, FD_CLOEXEC);
/external/chromium/chrome/browser/
H A Dprocess_singleton_linux.cc125 if (flags & FD_CLOEXEC)
127 return fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
/external/strace/
H A Ddesc.c167 #ifdef FD_CLOEXEC
168 { FD_CLOEXEC, "FD_CLOEXEC" },
/external/dnsmasq/src/
H A Dhelper.c274 fcntl(event_fd, F_SETFD, i | FD_CLOEXEC);
/external/webkit/Source/WebKit2/Platform/CoreIPC/unix/
H A DConnectionUnix.cpp220 while (fcntl(fileDescriptors[i], F_SETFL, FD_CLOEXEC) == -1) {
/external/mksh/src/
H A Dshf.c151 fcntl(fd, F_SETFD, FD_CLOEXEC);
177 fcntl(fd, F_SETFD, FD_CLOEXEC);
/external/openssh/
H A Dserverloop.c134 } else if ((fcntl(notify_pipe[0], F_SETFD, FD_CLOEXEC) == -1) ||
135 (fcntl(notify_pipe[1], F_SETFD, FD_CLOEXEC) == -1)) {
H A Dauthfd.c114 if (fcntl(sock, F_SETFD, FD_CLOEXEC) == -1) {
/external/ppp/pppd/
H A Dtty.c629 (void) fcntl(ipipe[0], F_SETFD, FD_CLOEXEC);
630 (void) fcntl(opipe[1], F_SETFD, FD_CLOEXEC);
/external/e2fsprogs/lib/uuid/
H A Dgen_uuid.c151 fcntl(fd, F_SETFD, i | FD_CLOEXEC);
/external/linux-tools-perf/
H A Dbuiltin-record.c543 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
/external/okhttp/src/main/java/libcore/io/
H A DOsConstants.java141 public static final int FD_CLOEXEC = placeholder(); field in class:OsConstants
/external/v8/src/
H A Dd8-posix.cc279 fcntl(exec_error_fds[kWriteFD], F_SETFD, FD_CLOEXEC);

Completed in 1587 milliseconds

12