HomeSort by relevance Sort by last modified time
    Searched full:fd_cloexec (Results 1 - 25 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/xlat/
fdflags.in 0 FD_CLOEXEC
fdflags.h 11 #if defined(FD_CLOEXEC) || (defined(HAVE_DECL_FD_CLOEXEC) && HAVE_DECL_FD_CLOEXEC)
12 XLAT(FD_CLOEXEC),
  /prebuilts/go/darwin-x86/src/syscall/
forkpipe_bsd.go 14 _, err = fcntl(p[0], F_SETFD, FD_CLOEXEC)
18 _, err = fcntl(p[1], F_SETFD, FD_CLOEXEC)
exec_solaris.go 185 fcntl1(uintptr(nextfd), F_SETFD, FD_CLOEXEC)
198 fcntl1(uintptr(nextfd), F_SETFD, FD_CLOEXEC)
271 _, err = fcntl(p[0], F_SETFD, FD_CLOEXEC)
275 _, err = fcntl(p[1], F_SETFD, FD_CLOEXEC)
  /prebuilts/go/linux-x86/src/syscall/
forkpipe_bsd.go 14 _, err = fcntl(p[0], F_SETFD, FD_CLOEXEC)
18 _, err = fcntl(p[1], F_SETFD, FD_CLOEXEC)
exec_solaris.go 185 fcntl1(uintptr(nextfd), F_SETFD, FD_CLOEXEC)
198 fcntl1(uintptr(nextfd), F_SETFD, FD_CLOEXEC)
271 _, err = fcntl(p[0], F_SETFD, FD_CLOEXEC)
275 _, err = fcntl(p[1], F_SETFD, FD_CLOEXEC)
  /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
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/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
11-1.c 10 * Test that the FD_CLOEXEC file descriptor flag associated with the new file
43 if (flags & FD_CLOEXEC) {
47 printf("shm_open() does not set the FD_CLOEXEC flags.\n");
  /external/honggfuzz/examples/terminal-emulators/
libclose.c 33 a1 &= ~(FD_CLOEXEC);
  /external/strace/tests/
vfork-f.c 61 if (fcntl(child_wait_fds[1], F_SETFD, FD_CLOEXEC))
67 if (fcntl(parent_wait_fds[0], F_SETFD, FD_CLOEXEC))
69 if (fcntl(parent_wait_fds[1], F_SETFD, FD_CLOEXEC))
  /external/strace/tests-m32/
vfork-f.c 61 if (fcntl(child_wait_fds[1], F_SETFD, FD_CLOEXEC))
67 if (fcntl(parent_wait_fds[0], F_SETFD, FD_CLOEXEC))
69 if (fcntl(parent_wait_fds[1], F_SETFD, FD_CLOEXEC))
  /external/strace/tests-mx32/
vfork-f.c 61 if (fcntl(child_wait_fds[1], F_SETFD, FD_CLOEXEC))
67 if (fcntl(parent_wait_fds[0], F_SETFD, FD_CLOEXEC))
69 if (fcntl(parent_wait_fds[1], F_SETFD, FD_CLOEXEC))
  /external/ltp/testcases/kernel/syscalls/epoll_create1/
epoll_create1_01.c 46 if (coe & FD_CLOEXEC)
56 if ((coe & FD_CLOEXEC) == 0)
  /external/ltp/testcases/kernel/syscalls/fanotify/
fanotify08.c 55 if ((ret & FD_CLOEXEC) == fd_bit) {
71 test_init_bit(FAN_CLOEXEC, FD_CLOEXEC, "set close_on_exec");
  /external/perfetto/src/traced/probes/
probes.cc 64 // The file descriptor passed by init doesn't have the FD_CLOEXEC bit set.
66 int res = fcntl(FtraceProcfs::g_kmesg_fd, F_SETFD, FD_CLOEXEC);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
fcntl.h 15 /* Create a file descriptor with FD_CLOEXEC set. */
  /external/ltp/testcases/kernel/syscalls/dup3/
dup3_01.c 98 if (coe & FD_CLOEXEC) {
111 if ((coe & FD_CLOEXEC) == 0) {
  /external/ltp/testcases/kernel/syscalls/eventfd2/
eventfd2_01.c 103 if (coe & FD_CLOEXEC) {
116 if ((coe & FD_CLOEXEC) == 0) {
  /external/perf_data_converter/src/quipper/
run_command.cc 30 if (fcntl(fd, F_SETFD, fd_flags | FD_CLOEXEC)) {
31 PLOG(ERROR) << "F_SETFD FD_CLOEXEC";
  /prebuilts/go/darwin-x86/src/runtime/
defs_solaris.go 121 FD_CLOEXEC = C.FD_CLOEXEC
  /prebuilts/go/linux-x86/src/runtime/
defs_solaris.go 121 FD_CLOEXEC = C.FD_CLOEXEC
  /system/core/base/include/android-base/
unique_fd.h 113 if (fcntl(pipefd[0], F_SETFD, FD_CLOEXEC) != 0 || fcntl(pipefd[1], F_SETFD, FD_CLOEXEC) != 0) {
  /external/mtpd/
mtpd.c 117 fcntl(control, F_SETFD, FD_CLOEXEC);
173 fcntl(signals[0], F_SETFD, FD_CLOEXEC);
174 fcntl(signals[1], F_SETFD, FD_CLOEXEC);
303 fcntl(the_socket, F_SETFD, FD_CLOEXEC);
  /external/perfetto/src/ftrace_reader/
atrace_wrapper.cc 51 // not marked as FD_CLOEXEC.
  /system/extras/alloc-stress/
alloc-stress.cpp 43 fcntl(m_readFd, F_SETFD, FD_CLOEXEC);
44 fcntl(m_writeFd, F_SETFD, FD_CLOEXEC);
63 fcntl(m_readFd, F_SETFD, FD_CLOEXEC);
64 fcntl(m_writeFd, F_SETFD, FD_CLOEXEC);

Completed in 551 milliseconds

1 2 3 4 5 6 7 8 91011>>