Home
last modified time | relevance | path

Searched refs:timerfd (Results 1 – 24 of 24) sorted by relevance

/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() local
30 if (timerfd == -1 || errno != 0) { in timerfd_create_0100()
34 close(timerfd); in timerfd_create_0100()
45 int timerfd = timerfd_create(CLOCK_REALTIME, 0); in timerfd_create_0200() local
46 if (timerfd == -1 || errno != 0) { in timerfd_create_0200()
50 close(timerfd); in timerfd_create_0200()
60 int timerfd = timerfd_create(-1, -1); in timerfd_create_0300() local
61 if (timerfd != -1) { in timerfd_create_0300()
62 t_error("%s failed, timerfd is %d", __func__, timerfd); in timerfd_create_0300()
65 close(timerfd); in timerfd_create_0300()
/third_party/rust/crates/rustix/src/time/
Dmod.rs6 mod timerfd; module
17 pub use timerfd::{
/third_party/flutter/engine/flutter/fml/
DBUILD.gn146 "platform/linux/timerfd.cc",
147 "platform/linux/timerfd.h",
156 "platform/linux/timerfd.cc",
157 "platform/linux/timerfd.h",
/third_party/rust/crates/rustix/tests/time/
Dmain.rs12 mod timerfd; module
/third_party/flutter/engine/flutter/fml/platform/linux/
Dtimerfd.h11 #if __has_include(<sys/timerfd.h>) && \
/third_party/rust/crates/nix/test/sys/
Dtest_timerfd.rs2 use nix::sys::timerfd::{
/third_party/rust/crates/nix/src/sys/
Dmod.rs212 pub mod timerfd;
/third_party/ltp/include/lapi/syscalls/
Dmips_n32.in281 timerfd 6281
Dmips_n64.in277 timerfd 5277
Ds390x.in262 timerfd 317
Dia64.in279 timerfd 1308
Ds390.in295 timerfd 317
Dmips_o32.in318 timerfd 4318
/third_party/libinput/tools/
Dlibinput-record.c2055 arm_timer(int timerfd) in arm_timer() argument
2066 timerfd_settime(timerfd, 0, &interval, NULL); in arm_timer()
2197 int sigfd, timerfd; in mainloop() local
2213 timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC|TFD_NONBLOCK); in mainloop()
2214 add_source(ctx, timerfd, timefd_dispatch, NULL); in mainloop()
2215 arm_timer(timerfd); in mainloop()
/third_party/libusb/
Dadd_config_h.patch102 +/* Define to 1 if the system has timerfd functionality. */
268 +/* Define to 1 if the system has timerfd functionality. */
429 +/* Define to 1 if the system has timerfd functionality. */
/third_party/ltp/
Dconfigure.ac75 sys/timerfd.h \
/third_party/flutter/build/
DBUILD.gn209 "$flutter_root/engine/flutter/fml/platform/linux/timerfd.cc",
217 "$flutter_root/engine/flutter/fml/platform/linux/timerfd.cc",
/third_party/libcoap/
Dconfigure.ac737 # For epoll, need two headers (sys/epoll.h sys/timerfd.h), but set up one #define
739 AC_CHECK_HEADER([sys/timerfd.h])
DCMakeLists.txt119 check_include_file(sys/timerfd.h HAVE_TIMERFD_H)
/third_party/flutter/engine/flutter/ci/licenses_golden/
Dlicenses_fuchsia187 FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timerfd.h
394 FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timerfd.h
862 FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timerfd.h
1069 FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timerfd.h
1536 FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timerfd.h
1745 FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timerfd.h
2322 FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timerfd.h
2529 FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timerfd.h
Dlicenses_flutter175 FILE: ../../../flutter/fml/platform/linux/timerfd.cc
176 FILE: ../../../flutter/fml/platform/linux/timerfd.h
/third_party/musl/
Dmusl_src.gni483 "src/linux/timerfd.c",
1904 "include/sys/timerfd.h",
DWHATSNEW863 - additional flags for poll, epoll, inotify, timerfd, timex, dlfcn
/third_party/chromium/patch/
D0003-ohos-1115.patch1738 +#include <sys/timerfd.h>
1826 + // We can't create the timerfd with TFD_NONBLOCK | TFD_CLOEXEC as we can't
1827 + // include timerfd.h. See comments above on __NR_timerfd_create. It looks like