Searched defs:timerfd (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/libusb/src/libusb/
H A Dlibusbi.h277 * this timerfd is maintained to trigger on the next pending timeout */
278 int timerfd; member in struct:libusb_context
285 #define usbi_using_timerfd(ctx) ((ctx)->timerfd >= 0)
968 /* clock ID of the clock that should be used for timerfd */
/external/libusb/libusb/
H A Dlibusbi.h193 * this timerfd is maintained to trigger on the next pending timeout */
194 int timerfd; member in struct:libusb_context
199 #define usbi_using_timerfd(ctx) ((ctx)->timerfd >= 0)
777 /* clock ID of the clock that should be used for timerfd */
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-kvm.c22 #include <sys/timerfd.h>
116 int timerfd; member in struct:perf_kvm_stat
974 kvm->timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK);
975 if (kvm->timerfd < 0) {
985 if (timerfd_settime(kvm->timerfd, 0, &new_value, NULL) != 0) {
987 close(kvm->timerfd);
1001 rc = read(kvm->timerfd, &c, sizeof(uint64_t));
1094 /* copy pollfds -- need to add timerfd and stdin */
1110 pollfds[nr_fds].fd = kvm->timerfd;
1150 if (kvm->timerfd >
[all...]

Completed in 573 milliseconds