HomeSort by relevance Sort by last modified time
    Searched refs:F_SETFD (Results 1 - 25 of 243) sorted by null

1 2 3 4 5 6 7 8 910

  /external/strace/xlat/
fcntlcmds.in 4 F_SETFD 2
fcntlcmds.h 8 #if !(defined(F_SETFD) || (defined(HAVE_DECL_F_SETFD) && HAVE_DECL_F_SETFD))
9 # define F_SETFD 2
95 XLAT(F_SETFD),
  /external/valgrind/coregrind/
link_tool_exe_solaris.in 22 use Fcntl qw/F_SETFD/;
43 fcntl($fh, F_SETFD, 0)
  /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)
  /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)
  /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/honggfuzz/examples/terminal-emulators/
libclose.c 32 if (__cmd == F_SETFD) {
  /external/perfetto/src/traced/probes/
probes.cc 66 int res = fcntl(FtraceProcfs::g_kmesg_fd, F_SETFD, 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) {
  /system/extras/alloc-stress/
alloc-stress.cpp 43 fcntl(m_readFd, F_SETFD, FD_CLOEXEC);
44 fcntl(m_writeFd, F_SETFD, FD_CLOEXEC);
60 fcntl(m_readFd, F_SETFD, 0);
61 fcntl(m_writeFd, F_SETFD,0);
63 fcntl(m_readFd, F_SETFD, FD_CLOEXEC);
64 fcntl(m_writeFd, F_SETFD, FD_CLOEXEC);
  /external/freetype/builds/unix/
ftsystem.c 254 #ifdef F_SETFD
256 (void)fcntl( file, F_SETFD, FD_CLOEXEC );
258 (void)fcntl( file, F_SETFD, 1 );
260 #endif /* F_SETFD */
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
fcntl.h 85 #define O_SETMASK 0x0000000F ///< Flags modifiable by F_SETFD (fcntl)
94 #define F_SETFD 2 ///< set file descriptor flags
106 /** file descriptor flags (F_GETFD, F_SETFD). **/
  /external/toybox/toys/other/
oneit.c 76 fcntl(4, F_SETFD, FD_CLOEXEC);
  /external/vboot_reference/cgpt/
cgpt_nor.c 214 fcntl(1, F_SETFD, FD_CLOEXEC);
223 fcntl(1, F_SETFD, fd_flags);
239 fcntl(1, F_SETFD, FD_CLOEXEC);
250 fcntl(1, F_SETFD, fd_flags);
  /external/wayland/cursor/
os-compatibility.c 51 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1)
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_Log.cpp 63 if(fcntl(*sockfd, F_SETFD, FD_CLOEXEC) < 0)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 93 #define F_SETFD 2 /* set/clear close_on_exec */
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 85 #define F_SETFD 2
  /bionic/tests/headers/posix/
fcntl_h.c 37 MACRO(F_SETFD);
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
opendir.c 85 fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 102 #define F_SETFD 2 /* set/clear close_on_exec */
  /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/valgrind/memcheck/tests/
file_locking.c 51 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0)

Completed in 364 milliseconds

1 2 3 4 5 6 7 8 910