/external/strace/tests/ |
D | epoll_create1.c | 39 #if defined __NR_epoll_create1 && defined O_CLOEXEC in main() 41 if (syscall(__NR_epoll_create1, O_CLOEXEC)) in main() 43 return syscall(__NR_epoll_create1, O_CLOEXEC | O_NONBLOCK) >= 0; in main()
|
D | eventfd.c | 39 #if defined __NR_eventfd2 && defined O_CLOEXEC in main() 41 return syscall(__NR_eventfd2, -1L, 1 | O_CLOEXEC | O_NONBLOCK) == 0 ? in main()
|
D | userfaultfd.c | 41 #if defined __NR_userfaultfd && defined O_CLOEXEC in main() 42 if (syscall(__NR_userfaultfd, 1 | O_NONBLOCK | O_CLOEXEC) != -1) in main()
|
D | signalfd.c | 42 #if defined HAVE_SYS_SIGNALFD_H && defined HAVE_SIGNALFD && defined O_CLOEXEC in main() 48 return signalfd(-1, &mask, O_CLOEXEC | O_NONBLOCK) == 0 ? in main()
|
D | timerfd_xettime.c | 42 && defined O_CLOEXEC 48 if (syscall(__NR_timerfd_create, CLOCK_MONOTONIC, O_CLOEXEC | O_NONBLOCK)) in main()
|
/external/strace/xlat/ |
D | epollflags.h | 2 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC 4 # define EPOLL_CLOEXEC O_CLOEXEC 16 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC
|
D | sfd_flags.h | 2 #if defined SFD_CLOEXEC || defined O_CLOEXEC 4 # define SFD_CLOEXEC O_CLOEXEC 19 #if defined SFD_CLOEXEC || defined O_CLOEXEC
|
D | efd_flags.h | 5 #if defined EFD_CLOEXEC || defined O_CLOEXEC 7 # define EFD_CLOEXEC O_CLOEXEC 23 #if defined EFD_CLOEXEC || defined O_CLOEXEC
|
D | timerfdflags.h | 8 #if defined TFD_CLOEXEC || defined O_CLOEXEC 10 # define TFD_CLOEXEC O_CLOEXEC 29 #if defined TFD_CLOEXEC || defined O_CLOEXEC
|
D | epollflags.in | 1 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC 2 EPOLL_CLOEXEC O_CLOEXEC
|
D | sfd_flags.in | 1 #if defined SFD_CLOEXEC || defined O_CLOEXEC 2 SFD_CLOEXEC O_CLOEXEC
|
D | efd_flags.in | 2 #if defined EFD_CLOEXEC || defined O_CLOEXEC 3 EFD_CLOEXEC O_CLOEXEC
|
D | uffd_flags.h | 14 #if defined(O_CLOEXEC) || (defined(HAVE_DECL_O_CLOEXEC) && HAVE_DECL_O_CLOEXEC) 15 XLAT(O_CLOEXEC),
|
D | inotify_init_flags.h | 14 #if defined(O_CLOEXEC) || (defined(HAVE_DECL_O_CLOEXEC) && HAVE_DECL_O_CLOEXEC) 15 XLAT(O_CLOEXEC),
|
D | timerfdflags.in | 5 #if defined TFD_CLOEXEC || defined O_CLOEXEC 6 TFD_CLOEXEC O_CLOEXEC
|
D | open_mode_flags.h | 63 #if defined(O_CLOEXEC) || (defined(HAVE_DECL_O_CLOEXEC) && HAVE_DECL_O_CLOEXEC) 64 XLAT(O_CLOEXEC),
|
/external/libchrome/sandbox/linux/services/ |
D | proc_util.cc | 34 HANDLE_EINTR(open(path, O_RDONLY | O_DIRECTORY | O_CLOEXEC))); in OpenDirectory() 44 openat(proc_fd, "self/fd/", O_DIRECTORY | O_RDONLY | O_CLOEXEC)); in CountOpenFds() 74 openat(proc_fd, "self/fd/", O_DIRECTORY | O_RDONLY | O_CLOEXEC); in HasOpenDirectory() 110 HANDLE_EINTR(open("/proc/", O_DIRECTORY | O_RDONLY | O_CLOEXEC))); in HasOpenDirectory()
|
/external/bison/lib/ |
D | fcntl.in.h | 194 #if !defined O_CLOEXEC && defined O_NOINHERIT 196 # define O_CLOEXEC O_NOINHERIT 199 #ifndef O_CLOEXEC 200 # define O_CLOEXEC 0
|
D | pipe2.c | 70 if ((flags & ~(O_CLOEXEC | O_NONBLOCK | O_BINARY | O_TEXT)) != 0) in pipe2() 127 if (flags & O_CLOEXEC) in pipe2()
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | fcntl.h | 61 #ifndef O_CLOEXEC 62 #define O_CLOEXEC 02000000 /* set close_on_exec */ macro
|
/external/bison/linux-lib/ |
D | fcntl.h | 506 #if !defined O_CLOEXEC && defined O_NOINHERIT 508 # define O_CLOEXEC O_NOINHERIT macro 511 #ifndef O_CLOEXEC 512 # define O_CLOEXEC 0 macro
|
/external/bison/darwin-lib/ |
D | fcntl.h | 506 #if !defined O_CLOEXEC && defined O_NOINHERIT 508 # define O_CLOEXEC O_NOINHERIT macro 511 #ifndef O_CLOEXEC 512 # define O_CLOEXEC 0 macro
|
/external/libchrome/sandbox/linux/syscall_broker/ |
D | broker_client.cc | 50 RAW_CHECK(kCurrentProcessOpenFlagsMask == O_CLOEXEC); in PathAndFlagsSyscall() 52 flags &= ~O_CLOEXEC; in PathAndFlagsSyscall()
|
/external/libbrillo/brillo/ |
D | file_utils.cc | 63 AT_FDCWD, path.value().c_str(), O_RDONLY | O_CLOEXEC | O_NOFOLLOW))); in RegularFileOrDelete() 118 O_RDONLY | O_NOFOLLOW | O_CREAT | O_EXCL | O_CLOEXEC, in TouchFileInternal()
|
/external/dhcpcd-6.8.2/ |
D | common.c | 150 #ifdef O_CLOEXEC in logger_open() 151 f |= O_CLOEXEC; in logger_open() 156 #ifndef O_CLOEXEC in logger_open()
|