Home
last modified time | relevance | path

Searched refs:timerfd_create (Results 1 – 25 of 56) sorted by relevance

123

/third_party/musl/libc-test/src/functionalext/supplement/linux/
Dtimerfd_create.c29 int timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK | TFD_CLOEXEC); in timerfd_create_0100()
45 int timerfd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_create_0200()
60 int timerfd = timerfd_create(-1, -1); in timerfd_create_0300()
Dtimerfd_gettime.c40 fd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_gettime_0100()
92 fd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_gettime64_0100()
Dtimerfd_settime.c44 fd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_settime_0100()
95 fd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_settime64_0100()
Dtest_src_functionalext_supplement_linux.gni64 "timerfd_create",
/third_party/rust/crates/rustix/tests/time/
Dtimerfd.rs2 timerfd_create, timerfd_gettime, timerfd_settime, Itimerspec, TimerfdClockId, TimerfdFlags,
8 let fd = timerfd_create(TimerfdClockId::Monotonic, TimerfdFlags::CLOEXEC).unwrap(); in test_timerfd()
42 let fd = timerfd_create(TimerfdClockId::Monotonic, TimerfdFlags::CLOEXEC).unwrap(); in test_timerfd_with_interval()
Dy2038.rs41 timerfd_create, timerfd_gettime, timerfd_settime, Itimerspec, TimerfdClockId, TimerfdFlags, in test_y2038_with_timerfd()
45 let fd = timerfd_create(TimerfdClockId::Monotonic, TimerfdFlags::CLOEXEC).unwrap(); in test_y2038_with_timerfd()
/third_party/rust/crates/rustix/src/time/
Dtimerfd.rs13 pub fn timerfd_create(clockid: TimerfdClockId, flags: TimerfdFlags) -> io::Result<OwnedFd> { in timerfd_create() function
14 backend::time::syscalls::timerfd_create(clockid, flags) in timerfd_create()
Dmod.rs18 timerfd_create, timerfd_gettime, timerfd_settime, Itimerspec, TimerfdClockId, TimerfdFlags,
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dtimerfd.h19 int timerfd_create(int, int);
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dtimerfd.h19 int timerfd_create(int, int);
/third_party/musl/porting/uniproton/kernel/include/sys/
Dtimerfd.h19 int timerfd_create(int, int);
/third_party/musl/include/sys/
Dtimerfd.h19 int timerfd_create(int, int);
/third_party/musl/ndk_musl_include/sys/
Dtimerfd.h19 int timerfd_create(int, int);
/third_party/ltp/include/lapi/
Dtimerfd.h19 static inline int timerfd_create(int clockid, int flags) in timerfd_create() function
/third_party/flutter/engine/flutter/fml/platform/linux/
Dtimerfd.h35 int timerfd_create(int clockid, int flags);
Dtimerfd.cc17 int timerfd_create(int clockid, int flags) { in timerfd_create() function
Dmessage_loop_linux.cc19 timer_fd_(::timerfd_create(kClockType, TFD_NONBLOCK | TFD_CLOEXEC)), in MessageLoopLinux()
/third_party/ltp/testcases/kernel/syscalls/timerfd/
Dtimerfd_create01.c79 TEST(timerfd_create(test->clockid, test->flags)); in timerfd_create_verify()
Dtimerfd_gettime01.c51 clockfd = timerfd_create(CLOCK_REALTIME, 0); in setup()
Dtimerfd_settime01.c57 clockfd = timerfd_create(CLOCK_REALTIME, 0); in setup()
/third_party/ltp/lib/
Dtst_safe_timerfd.c19 fd = timerfd_create(clockid, flags); in safe_timerfd_create()
/third_party/flutter/engine/flutter/fml/platform/android/
Dmessage_loop_android.cc33 timer_fd_(::timerfd_create(kClockType, TFD_NONBLOCK | TFD_CLOEXEC)), in MessageLoopAndroid()
/third_party/musl/src/linux/
Dtimerfd.c7 int timerfd_create(int clockid, int flags) in timerfd_create() function
/third_party/rust/crates/nix/src/sys/
Dtimerfd.rs98 libc::timerfd_create(clockid as i32, flags.bits()) in new()
/third_party/rust/crates/rustix/src/backend/libc/time/
Dsyscalls.rs237 pub(crate) fn timerfd_create(id: TimerfdClockId, flags: TimerfdFlags) -> io::Result<OwnedFd> { in timerfd_create() function
238 unsafe { ret_owned_fd(c::timerfd_create(id as c::clockid_t, flags.bits())) } in timerfd_create()

123