Home
last modified time | relevance | path

Searched refs:timerfd_settime (Results 1 - 25 of 29) sorted by relevance

12

/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dtimerfd.h20 int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *);
24 __REDIR(timerfd_settime, __timerfd_settime64);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dtimerfd.h20 int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *);
24 __REDIR(timerfd_settime, __timerfd_settime64);
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dtimerfd.h20 int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *);
24 __REDIR(timerfd_settime, __timerfd_settime64);
/third_party/musl/include/sys/
H A Dtimerfd.h20 int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *);
24 __REDIR(timerfd_settime, __timerfd_settime64);
/third_party/rust/crates/rustix/src/time/
H A Dtimerfd.rs17 /// `timerfd_settime(clockid, flags, new_value)`—Set the time on a timer.
22 /// [Linux]: https://man7.org/linux/man-pages/man2/timerfd_settime.2.html
24 pub fn timerfd_settime<Fd: AsFd>( in timerfd_settime() functions
29 backend::time::syscalls::timerfd_settime(fd.as_fd(), flags, new_value) in timerfd_settime()
H A Dmod.rs18 timerfd_create, timerfd_gettime, timerfd_settime, Itimerspec, TimerfdClockId, TimerfdFlags,
/third_party/rust/crates/rustix/tests/time/
H A Dtimerfd.rs2 timerfd_create, timerfd_gettime, timerfd_settime, Itimerspec, TimerfdClockId, TimerfdFlags,
20 let _old: Itimerspec = timerfd_settime(&fd, TimerfdTimerFlags::ABSTIME, &set).unwrap(); in test_timerfd()
54 let _old: Itimerspec = timerfd_settime(&fd, TimerfdTimerFlags::ABSTIME, &set).unwrap(); in test_timerfd_with_interval()
H A Dy2038.rs41 timerfd_create, timerfd_gettime, timerfd_settime, Itimerspec, TimerfdClockId, TimerfdFlags, in test_y2038_with_timerfd()
57 let _old: Itimerspec = match timerfd_settime(&fd, TimerfdTimerFlags::ABSTIME, &set) { in test_y2038_with_timerfd()
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Dtimerfd_settime.c50 result = timerfd_settime(fd, 0, &its, NULL); in timerfd_settime_0100()
52 t_error("%s timerfd_settime failed\n", __func__); in timerfd_settime_0100()
81 timerfd_settime(-1, 0, NULL, NULL); in timerfd_settime_0200()
H A Dtimerfd_gettime.c46 result = timerfd_settime(fd, 0, &its, NULL); in timerfd_gettime_0100()
48 t_error("%s timerfd_settime failed", __func__); in timerfd_gettime_0100()
98 result = timerfd_settime(fd, 0, &its, NULL); in timerfd_gettime64_0100()
100 t_error("%s timerfd_settime failed", __func__); in timerfd_gettime64_0100()
/third_party/rust/crates/nix/src/sys/
H A Dtimerfd.rs139 #[doc(alias("timerfd_settime"))]
147 libc::timerfd_settime( in set()
178 #[doc(alias("timerfd_settime"))]
181 libc::timerfd_settime( in unset()
/third_party/ltp/include/lapi/
H A Dtimerfd.h26 static inline int timerfd_settime(int fd, int flags, in timerfd_settime() function
/third_party/musl/libc-test/src/functionalext/supplement/linux/linux_gtest/
H A Dlinux_timerfd_settime_test.cpp13 * @tc.desc: This test verifies that for timerfd_create, timerfd_settime and timerfd_gettime functions create a
24 int setResult = timerfd_settime(fd, 0, &its, nullptr); in HWTEST_F()
/third_party/musl/compat/time32/
H A Dtimerfd_settime32.c8 int r = timerfd_settime(t, flags, (&(struct itimerspec){ in __timerfd_settime32()
/third_party/ltp/lib/
H A Dtst_safe_timerfd.c58 rval = timerfd_settime(fd, flags, new_value, old_value); in safe_timerfd_settime()
62 "timerfd_settime() failed"); in safe_timerfd_settime()
65 "Invalid timerfd_settime() return value %d", rval); in safe_timerfd_settime()
/third_party/curl/docs/examples/
H A Dephiperfifo.c169 timerfd_settime(g->tfd, /* flags= */0, &its, NULL); in multi_timer_cb()
216 timerfd_settime(g->tfd, 0, &its, NULL); in event_cb()
493 timerfd_settime(g.tfd, 0, &its, NULL); in main()
/third_party/musl/src/linux/
H A Dtimerfd.c12 int timerfd_settime(int fd, int flags, const struct itimerspec *new, struct itimerspec *old) in timerfd_settime() function
/third_party/musl/libc-test/src/common/
H A Dtest.h91 #define __timerfd_settime64 timerfd_settime
/third_party/rust/crates/rustix/src/backend/linux_raw/time/
H A Dsyscalls.rs76 pub(crate) fn timerfd_settime(
/third_party/alsa-utils/amidi/
H A Damidi.c675 err = timerfd_settime(pfds[0].fd, 0, &itimerspec, NULL); in main()
742 err = timerfd_settime(pfds[0].fd, 0, &itimerspec, NULL); in main()
/third_party/libinput/src/
H A Dtimer.c82 r = timerfd_settime(libinput->timer.fd, TFD_TIMER_ABSTIME, &its, NULL); in libinput_timer_arm_timer_fd()
84 log_error(libinput, "timer: timerfd_settime error: %s\n", strerror(errno)); in libinput_timer_arm_timer_fd()
/third_party/rust/crates/rustix/src/backend/libc/time/
H A Dsyscalls.rs243 pub(crate) fn timerfd_settime(
273 ret(c::timerfd_settime(
326 ret(c::timerfd_settime( in timerfd_settime_old()
/third_party/musl/Benchmark/musl/
H A Dlibc_time.cpp173 if (timerfd_settime(fd, TFD_TIMER_ABSTIME, &newValue, nullptr) == -1) { in Bm_function_Timerfd_settime()
174 perror("timerfd_settime"); in Bm_function_Timerfd_settime()
/third_party/libcoap/src/
H A Dcoap_io.c628 ret = timerfd_settime(context->eptimerfd, 0, &new_value, NULL);
630 coap_log_err("%s: timerfd_settime failed: %s (%d)\n",
1339 ret = timerfd_settime(ctx->eptimerfd, 0, &new_value, NULL);
1341 coap_log_err("%s: timerfd_settime failed: %s (%d)\n",
/third_party/glfw/src/
H A Dwl_window.c1105 timerfd_settime(_glfw.wl.cursorTimerfd, 0, &timer, NULL); in setCursorImage()
1758 timerfd_settime(_glfw.wl.keyRepeatTimerfd, 0, &timer, NULL); in keyboardHandleLeave()
1802 timerfd_settime(_glfw.wl.keyRepeatTimerfd, 0, &timer, NULL); in keyboardHandleKey()

Completed in 15 milliseconds

12