Home
last modified time | relevance | path

Searched refs:TFD_CLOEXEC (Results 1 – 20 of 20) 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.rs15 TFD_CLOEXEC,
28 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.ac112 AC_CHECK_DECL(TFD_CLOEXEC,[],
113 [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile wayland libraries")],
Dmeson.build50 { 'header': 'sys/timerfd.h', 'symbol': 'TFD_CLOEXEC' },
/external/perfetto/src/base/
Dperiodic_task.cc40 timerfd_create(CLOCK_BOOTTIME, TFD_CLOEXEC | TFD_NONBLOCK)); in CreateTimerFd()
/external/rust/crates/nix/src/sys/
Dtimerfd.rs75 TFD_CLOEXEC;
/external/libusb/libusb/os/
Devents_posix.c149 timer->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK | TFD_CLOEXEC); in usbi_create_timer()
/external/libchrome/libchrome_tools/patches/
DRefactor-AlarmTimer-to-report-error-to-the-caller.patch77 + base::ScopedFD alarm_fd(timerfd_create(clockid, TFD_CLOEXEC));
/external/curl/docs/examples/
Dephiperfifo.c484 g.tfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK | TFD_CLOEXEC); in main()
/external/wayland/src/
Devent-loop.c319 TFD_CLOEXEC | TFD_NONBLOCK); in wl_timer_heap_ensure_timerfd()
/external/libusb/
Dconfigure.ac263 …AC_CHECK_DECLS([TFD_NONBLOCK, TFD_CLOEXEC], [timerfd_h_ok=yes], [timerfd_h_ok=], [[#include <sys/t…
/external/rust/crates/libc/src/unix/linux_like/android/
Dmod.rs676 pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC; constant
/external/adhd/cras/src/libcras/
Dcras_client.c510 TFD_NONBLOCK | TFD_CLOEXEC); in error_delay_next_action()
/external/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs1714 pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC; constant
/external/rust/crates/libc/src/fuchsia/
Dmod.rs2624 pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC; constant
/external/strace/
DChangeLog41399 * xlat/timerfdflags.in [!TFD_CLOEXEC]: Check that O_CLOEXEC is defined.