/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | timerfd_create.c | 29 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()
|
D | timerfd_gettime.c | 40 fd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_gettime_0100() 92 fd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_gettime64_0100()
|
D | timerfd_settime.c | 44 fd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_settime_0100() 95 fd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_settime64_0100()
|
D | test_src_functionalext_supplement_linux.gni | 64 "timerfd_create",
|
/third_party/rust/crates/rustix/tests/time/ |
D | timerfd.rs | 2 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()
|
D | y2038.rs | 41 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/ |
D | timerfd.rs | 13 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()
|
D | mod.rs | 18 timerfd_create, timerfd_gettime, timerfd_settime, Itimerspec, TimerfdClockId, TimerfdFlags,
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | timerfd.h | 19 int timerfd_create(int, int);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | timerfd.h | 19 int timerfd_create(int, int);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | timerfd.h | 19 int timerfd_create(int, int);
|
/third_party/musl/include/sys/ |
D | timerfd.h | 19 int timerfd_create(int, int);
|
/third_party/musl/ndk_musl_include/sys/ |
D | timerfd.h | 19 int timerfd_create(int, int);
|
/third_party/ltp/include/lapi/ |
D | timerfd.h | 19 static inline int timerfd_create(int clockid, int flags) in timerfd_create() function
|
/third_party/flutter/engine/flutter/fml/platform/linux/ |
D | timerfd.h | 35 int timerfd_create(int clockid, int flags);
|
D | timerfd.cc | 17 int timerfd_create(int clockid, int flags) { in timerfd_create() function
|
D | message_loop_linux.cc | 19 timer_fd_(::timerfd_create(kClockType, TFD_NONBLOCK | TFD_CLOEXEC)), in MessageLoopLinux()
|
/third_party/ltp/testcases/kernel/syscalls/timerfd/ |
D | timerfd_create01.c | 79 TEST(timerfd_create(test->clockid, test->flags)); in timerfd_create_verify()
|
D | timerfd_gettime01.c | 51 clockfd = timerfd_create(CLOCK_REALTIME, 0); in setup()
|
D | timerfd_settime01.c | 57 clockfd = timerfd_create(CLOCK_REALTIME, 0); in setup()
|
/third_party/ltp/lib/ |
D | tst_safe_timerfd.c | 19 fd = timerfd_create(clockid, flags); in safe_timerfd_create()
|
/third_party/flutter/engine/flutter/fml/platform/android/ |
D | message_loop_android.cc | 33 timer_fd_(::timerfd_create(kClockType, TFD_NONBLOCK | TFD_CLOEXEC)), in MessageLoopAndroid()
|
/third_party/musl/src/linux/ |
D | timerfd.c | 7 int timerfd_create(int clockid, int flags) in timerfd_create() function
|
/third_party/rust/crates/nix/src/sys/ |
D | timerfd.rs | 98 libc::timerfd_create(clockid as i32, flags.bits()) in new()
|
/third_party/rust/crates/rustix/src/backend/libc/time/ |
D | syscalls.rs | 237 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()
|