/third_party/musl/src/unistd/ |
D | pipe2.c | 14 __syscall(SYS_fcntl, fd[0], F_SETFD, FD_CLOEXEC); in pipe2() 15 __syscall(SYS_fcntl, fd[1], F_SETFD, FD_CLOEXEC); in pipe2()
|
/third_party/musl/porting/liteos_a/user/src/unistd/ |
D | pipe2.c | 16 __syscall(SYS_fcntl, fd[0], F_SETFD, FD_CLOEXEC); in pipe2() 17 __syscall(SYS_fcntl, fd[1], F_SETFD, FD_CLOEXEC); in pipe2()
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | epoll_create1.c | 37 if ((close_on_exec ? FD_CLOEXEC : 0) != (flags & FD_CLOEXEC)) { in close_on_exec()
|
/third_party/ltp/testcases/kernel/syscalls/fanotify/ |
D | fanotify08.c | 38 if ((ret & FD_CLOEXEC) == fd_bit) { in test_init_bit() 54 test_init_bit(FAN_CLOEXEC, FD_CLOEXEC, "set close_on_exec"); in run()
|
/third_party/musl/src/network/ |
D | socketpair.c | 16 __syscall(SYS_fcntl, fd[0], F_SETFD, FD_CLOEXEC); in socketpair() 17 __syscall(SYS_fcntl, fd[1], F_SETFD, FD_CLOEXEC); in socketpair()
|
/third_party/ltp/testcases/kernel/syscalls/dup3/ |
D | dup3_01.c | 48 if (ret & FD_CLOEXEC) in run() 53 if (ret & FD_CLOEXEC) in run()
|
/third_party/ltp/testcases/kernel/syscalls/eventfd2/ |
D | eventfd2_01.c | 102 if (coe & FD_CLOEXEC) { in main() 115 if ((coe & FD_CLOEXEC) == 0) { in main()
|
/third_party/ltp/testcases/kernel/syscalls/inotify_init/ |
D | inotify_init1_01.c | 148 if (coe & FD_CLOEXEC) { in main() 162 } else if ((coe & FD_CLOEXEC) == 0) { in main()
|
/third_party/ltp/testcases/kernel/syscalls/timerfd/ |
D | timerfd02.c | 150 if (coe & FD_CLOEXEC) { in main() 168 if ((coe & FD_CLOEXEC) == 0) { in main()
|
/third_party/ltp/testcases/kernel/syscalls/signalfd4/ |
D | signalfd4_01.c | 154 if (coe & FD_CLOEXEC) { in main() 172 if ((coe & FD_CLOEXEC) == 0) { in main()
|
/third_party/musl/porting/liteos_a/user/src/fcntl/ |
D | fcntl.c | 26 __syscall(SYS_fcntl, ret, F_SETFD, FD_CLOEXEC); in fcntl() 35 if (ret >= 0) __syscall(SYS_fcntl, ret, F_SETFD, FD_CLOEXEC); in fcntl()
|
/third_party/musl/src/fcntl/ |
D | fcntl.c | 27 __syscall(SYS_fcntl, ret, F_SETFD, FD_CLOEXEC); in fcntl() 36 if (ret >= 0) __syscall(SYS_fcntl, ret, F_SETFD, FD_CLOEXEC); in fcntl()
|
D | open.c | 18 __syscall(SYS_fcntl, fd, F_SETFD, FD_CLOEXEC); in open()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
D | address_is_readable.cc | 98 fcntl(p[0], F_SETFD, FD_CLOEXEC); in AddressIsReadable() 99 fcntl(p[1], F_SETFD, FD_CLOEXEC); in AddressIsReadable()
|
/third_party/NuttX/fs/vfs/ |
D | fs_fcntl.c | 108 ret = (filep->f_oflags & O_CLOEXEC) ? FD_CLOEXEC : 0; in file_vfcntl() 123 if (oflags & FD_CLOEXEC) in file_vfcntl()
|
/third_party/freetype/builds/unix/ |
D | ftsystem.c | 272 #ifdef FD_CLOEXEC in FT_Stream_Open() 273 (void)fcntl( file, F_SETFD, FD_CLOEXEC ); in FT_Stream_Open()
|
/third_party/flutter/skia/third_party/externals/freetype/builds/unix/ |
D | ftsystem.c | 255 #ifdef FD_CLOEXEC in FT_Stream_Open() 256 (void)fcntl( file, F_SETFD, FD_CLOEXEC ); in FT_Stream_Open()
|
/third_party/skia/third_party/externals/freetype/builds/unix/ |
D | ftsystem.c | 272 #ifdef FD_CLOEXEC in FT_Stream_Open() 273 (void)fcntl( file, F_SETFD, FD_CLOEXEC ); in FT_Stream_Open()
|
/third_party/ltp/testcases/kernel/syscalls/pidfd_open/ |
D | pidfd_open01.c | 32 if (!(flag & FD_CLOEXEC)) in run()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
D | 11-1.c | 43 if (flags & FD_CLOEXEC) { in main()
|
/third_party/musl/src/dirent/ |
D | fdopendir.c | 28 fcntl(fd, F_SETFD, FD_CLOEXEC); in fdopendir()
|
/third_party/musl/porting/liteos_a/user/src/process/ |
D | posix_spawn.c | 116 ret & ~FD_CLOEXEC); in child() 146 __syscall(SYS_fcntl, p, F_SETFD, FD_CLOEXEC); in child()
|
/third_party/musl/src/process/ |
D | posix_spawn.c | 115 ret & ~FD_CLOEXEC); in child() 145 __syscall(SYS_fcntl, p, F_SETFD, FD_CLOEXEC); in child()
|
/third_party/musl/src/stdio/ |
D | fopen.c | 24 __syscall(SYS_fcntl, fd, F_SETFD, FD_CLOEXEC); in fopen()
|
/third_party/musl/src/linux/ |
D | signalfd.c | 15 __syscall(SYS_fcntl, ret, F_SETFD, FD_CLOEXEC); in signalfd()
|