Home | History | Annotate | Download | only in evdev

Lines Matching defs:time

61         ALOGV("applied override time %d.%06d", mOverrideSec, mOverrideUsec);
85 // Double-check. Time may have moved on.
86 auto time = systemTime(SYSTEM_TIME_MONOTONIC);
87 if (event.when > time) {
90 "CLOCK_MONOTONIC): event time %" PRId64 ", current time %" PRId64
91 ", call time %" PRId64 ". Using current time instead.",
92 mDeviceNode->getPath().c_str(), event.when, time, currentTime);
93 event.when = time;
95 ALOGV("Event time is ok but failed the fast path and required an extra "
96 "call to systemTime: event time %" PRId64 ", current time %" PRId64
97 ", call time %" PRId64 ".", event.when, time, currentTime);