/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() 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/ |
D | mod.rs | 6 mod timerfd; module 17 pub use timerfd::{
|
/third_party/flutter/engine/flutter/fml/ |
D | BUILD.gn | 146 "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/ |
D | main.rs | 12 mod timerfd; module
|
/third_party/flutter/engine/flutter/fml/platform/linux/ |
D | timerfd.h | 11 #if __has_include(<sys/timerfd.h>) && \
|
/third_party/rust/crates/nix/test/sys/ |
D | test_timerfd.rs | 2 use nix::sys::timerfd::{
|
/third_party/rust/crates/nix/src/sys/ |
D | mod.rs | 212 pub mod timerfd;
|
/third_party/ltp/include/lapi/syscalls/ |
D | mips_n32.in | 281 timerfd 6281
|
D | mips_n64.in | 277 timerfd 5277
|
D | s390x.in | 262 timerfd 317
|
D | ia64.in | 279 timerfd 1308
|
D | s390.in | 295 timerfd 317
|
D | mips_o32.in | 318 timerfd 4318
|
/third_party/libinput/tools/ |
D | libinput-record.c | 2055 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/ |
D | add_config_h.patch | 102 +/* 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/ |
D | configure.ac | 75 sys/timerfd.h \
|
/third_party/flutter/build/ |
D | BUILD.gn | 209 "$flutter_root/engine/flutter/fml/platform/linux/timerfd.cc", 217 "$flutter_root/engine/flutter/fml/platform/linux/timerfd.cc",
|
/third_party/libcoap/ |
D | configure.ac | 737 # For epoll, need two headers (sys/epoll.h sys/timerfd.h), but set up one #define 739 AC_CHECK_HEADER([sys/timerfd.h])
|
D | CMakeLists.txt | 119 check_include_file(sys/timerfd.h HAVE_TIMERFD_H)
|
/third_party/flutter/engine/flutter/ci/licenses_golden/ |
D | licenses_fuchsia | 187 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
|
D | licenses_flutter | 175 FILE: ../../../flutter/fml/platform/linux/timerfd.cc 176 FILE: ../../../flutter/fml/platform/linux/timerfd.h
|
/third_party/musl/ |
D | musl_src.gni | 483 "src/linux/timerfd.c", 1904 "include/sys/timerfd.h",
|
D | WHATSNEW | 863 - additional flags for poll, epoll, inotify, timerfd, timex, dlfcn
|
/third_party/chromium/patch/ |
D | 0003-ohos-1115.patch | 1738 +#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
|