Searched refs:TFD_CLOEXEC (Results 1 – 13 of 13) sorted by relevance
/external/strace/xlat/ |
D | timerfdflags.h | 20 #if defined TFD_CLOEXEC || defined O_CLOEXEC 21 #if defined(TFD_CLOEXEC) || (defined(HAVE_DECL_TFD_CLOEXEC) && HAVE_DECL_TFD_CLOEXEC) 23 static_assert((TFD_CLOEXEC) == (O_CLOEXEC), "TFD_CLOEXEC != O_CLOEXEC"); 26 # define TFD_CLOEXEC O_CLOEXEC 51 #if defined TFD_CLOEXEC || defined O_CLOEXEC 52 XLAT(TFD_CLOEXEC),
|
D | timerfdflags.in | 5 #if defined TFD_CLOEXEC || defined O_CLOEXEC 6 TFD_CLOEXEC O_CLOEXEC
|
/external/ltp/testcases/kernel/syscalls/timerfd/ |
D | timerfd02.c | 68 #define TFD_CLOEXEC O_CLOEXEC macro 159 TFD_CLOEXEC); in main()
|
/external/kernel-headers/original/uapi/linux/ |
D | timerfd.h | 32 #define TFD_CLOEXEC O_CLOEXEC macro
|
/external/crosvm/sys_util/src/ |
D | timerfd.rs | 13 use libc::{self, timerfd_create, timerfd_gettime, timerfd_settime, CLOCK_MONOTONIC, TFD_CLOEXEC}; 25 let ret = unsafe { timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC) }; in new()
|
/external/libevent/ |
D | epoll.c | 78 defined(TFD_CLOEXEC) 194 fd = epollop->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC); in epoll_init()
|
/external/wayland/ |
D | configure.ac | 106 AC_CHECK_DECL(TFD_CLOEXEC,[], 107 [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile wayland libraries")],
|
/external/wayland/src/ |
D | event-loop.c | 269 TFD_CLOEXEC | TFD_NONBLOCK); in wl_event_loop_add_timer()
|
/external/curl/docs/examples/ |
D | ephiperfifo.c | 484 g.tfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK | TFD_CLOEXEC); in main()
|
/external/rust/crates/libc/src/unix/linux_like/linux/ |
D | mod.rs | 1538 pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC; constant
|
/external/adhd/cras/src/libcras/ |
D | cras_client.c | 420 TFD_NONBLOCK | TFD_CLOEXEC); in error_delay_next_action()
|
/external/rust/crates/libc/src/fuchsia/ |
D | mod.rs | 2610 pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC; constant
|
/external/strace/ |
D | ChangeLog | 41399 * xlat/timerfdflags.in [!TFD_CLOEXEC]: Check that O_CLOEXEC is defined.
|