Home
last modified time | relevance | path

Searched refs:TFD_CLOEXEC (Results 1 – 13 of 13) sorted by relevance

/external/strace/xlat/
Dtimerfdflags.h20 #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),
Dtimerfdflags.in5 #if defined TFD_CLOEXEC || defined O_CLOEXEC
6 TFD_CLOEXEC O_CLOEXEC
/external/ltp/testcases/kernel/syscalls/timerfd/
Dtimerfd02.c68 #define TFD_CLOEXEC O_CLOEXEC macro
159 TFD_CLOEXEC); in main()
/external/kernel-headers/original/uapi/linux/
Dtimerfd.h32 #define TFD_CLOEXEC O_CLOEXEC macro
/external/crosvm/sys_util/src/
Dtimerfd.rs13 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/
Depoll.c78 defined(TFD_CLOEXEC)
194 fd = epollop->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC); in epoll_init()
/external/wayland/
Dconfigure.ac106 AC_CHECK_DECL(TFD_CLOEXEC,[],
107 [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile wayland libraries")],
/external/wayland/src/
Devent-loop.c269 TFD_CLOEXEC | TFD_NONBLOCK); in wl_event_loop_add_timer()
/external/curl/docs/examples/
Dephiperfifo.c484 g.tfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK | TFD_CLOEXEC); in main()
/external/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs1538 pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC; constant
/external/adhd/cras/src/libcras/
Dcras_client.c420 TFD_NONBLOCK | TFD_CLOEXEC); in error_delay_next_action()
/external/rust/crates/libc/src/fuchsia/
Dmod.rs2610 pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC; constant
/external/strace/
DChangeLog41399 * xlat/timerfdflags.in [!TFD_CLOEXEC]: Check that O_CLOEXEC is defined.