Home | History | Annotate | Download | only in ui

Lines Matching defs:eventTime

178     mInboundQueue.headSentinel.eventTime = LONG_LONG_MIN;
182 mInboundQueue.tailSentinel.eventTime = LONG_LONG_MAX;
341 mThrottleState.lastEventTime = entry->eventTime < currentTime
342 ? entry->eventTime : currentTime;
430 mAppSwitchDueTime = keyEntry->eventTime + APP_SWITCH_TIMEOUT;
575 entry->eventTime = currentTime;
606 LOGD("dispatchConfigurationChanged - eventTime=%lld", entry->eventTime);
615 commandEntry->eventTime = entry->eventTime;
640 mKeyRepeatState.nextRepeatTime = entry->eventTime + keyRepeatTimeout;
710 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags,
773 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags,
878 onANRLocked(currentTime, application, window, entry->eventTime, mInputTargetWaitStartTime);
1419 if (motionEntry->eventTime - motionEntry->downTime < LONG_TOUCH_DELAY) {
1431 commandEntry->eventTime = eventEntry->eventTime;
1524 appendedMotionSample->eventTime, appendedMotionSample->pointerCoords);
1646 eventTime);
1694 motionEntry->downTime, firstMotionSample->eventTime,
1709 nextMotionSample->eventTime, nextMotionSample->pointerCoords);
1748 connection->lastEventTime = eventEntry->eventTime;
2021 originalMotionEntry->eventTime,
2043 mAllocator.appendMotionSample(splitMotionEntry, originalMotionSample->eventTime,
2050 void InputDispatcher::notifyConfigurationChanged(nsecs_t eventTime) {
2052 LOGD("notifyConfigurationChanged - eventTime=%lld", eventTime);
2059 ConfigurationChangedEntry* newEntry = mAllocator.obtainConfigurationChangedEntry(eventTime);
2068 void InputDispatcher::notifyKey(nsecs_t eventTime, int32_t deviceId, int32_t source,
2072 LOGD("notifyKey - eventTime=%lld, deviceId=0x%x, source=0x%x, policyFlags=0x%x, action=0x%x, "
2074 eventTime, deviceId, source, policyFlags, action, flags,
2082 mPolicy->interceptKeyBeforeQueueing(eventTime, deviceId, action, /*byref*/ flags,
2090 KeyEntry* newEntry = mAllocator.obtainKeyEntry(eventTime,
2102 void InputDispatcher::notifyMotion(nsecs_t eventTime, int32_t deviceId, int32_t source,
2107 LOGD("notifyMotion - eventTime=%lld, deviceId=0x%x, source=0x%x, policyFlags=0x%x, "
2110 eventTime, deviceId, source, policyFlags, action, flags, metaState, edgeFlags,
2128 mPolicy->interceptGenericBeforeQueueing(eventTime, /*byref*/ policyFlags);
2164 mAllocator.appendMotionSample(motionEntry, eventTime, pointerCoords);
2222 mAllocator.appendMotionSample(motionEntry, eventTime, pointerCoords);
2241 MotionEntry* newEntry = mAllocator.obtainMotionEntry(eventTime,
2289 nsecs_t eventTime = keyEvent->getEventTime();
2294 mPolicy->interceptKeyBeforeQueueing(eventTime, deviceId, action, /*byref*/ flags,
2298 injectedEntry = mAllocator.obtainKeyEntry(eventTime, deviceId, keyEvent->getSource(),
2313 nsecs_t eventTime = motionEvent->getEventTime();
2314 mPolicy->interceptGenericBeforeQueueing(eventTime, /*byref*/ policyFlags);
2870 nsecs_t eventTime, nsecs_t waitStartTime) {
2874 (currentTime - eventTime) / 1000000.0,
2891 mPolicy->notifyConfigurationChanged(commandEntry->eventTime);
2926 entry->downTime, entry->eventTime);
2944 mPolicy->pokeUserActivity(commandEntry->eventTime, commandEntry->userActivityEventType);
2990 nsecs_t eventTime, uint32_t policyFlags) {
2994 entry->eventTime = eventTime;
3007 InputDispatcher::Allocator::obtainConfigurationChangedEntry(nsecs_t eventTime) {
3009 initializeEventEntry(entry, EventEntry::TYPE_CONFIGURATION_CHANGED, eventTime, 0);
3013 InputDispatcher::KeyEntry* InputDispatcher::Allocator::obtainKeyEntry(nsecs_t eventTime,
3018 initializeEventEntry(entry, EventEntry::TYPE_KEY, eventTime, policyFlags);
3034 InputDispatcher::MotionEntry* InputDispatcher::Allocator::obtainMotionEntry(nsecs_t eventTime,
3040 initializeEventEntry(entry, EventEntry::TYPE_MOTION, eventTime, policyFlags);
3042 entry->eventTime = eventTime;
3053 entry->firstSample.eventTime = eventTime;
3156 nsecs_t eventTime, const PointerCoords* pointerCoords) {
3158 sample->eventTime = eventTime;