• Home
  • Raw
  • Download

Lines Matching refs:eventTime

417                     mAppSwitchDueTime = keyEntry->eventTime + APP_SWITCH_TIMEOUT;  in enqueueInboundEventLocked()
568 return currentTime - entry->eventTime >= STALE_EVENT_TIMEOUT; in isStaleEventLocked()
643 entry->eventTime = currentTime; in synthesizeKeyRepeatLocked()
670 ALOGD("dispatchConfigurationChanged - eventTime=%lld", entry->eventTime); in dispatchConfigurationChangedLocked()
679 commandEntry->eventTime = entry->eventTime; in dispatchConfigurationChangedLocked()
686 ALOGD("dispatchDeviceReset - eventTime=%lld, deviceId=%d", entry->eventTime, entry->deviceId); in dispatchDeviceResetLocked()
716 mKeyRepeatState.nextRepeatTime = entry->eventTime + mConfig.keyRepeatTimeout; in dispatchKeyLocked()
800 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags, in logOutboundKeyDetailsLocked()
870 entry->eventTime, entry->deviceId, entry->source, entry->policyFlags, in logOutboundMotionDetailsLocked()
977 entry->eventTime, mInputTargetWaitStartTime, reason); in handleTargetsNotReadyLocked()
1701 && currentTime >= connection->waitQueue.head->eventEntry->eventTime in isWindowReadyForMoreInputLocked()
1764 commandEntry->eventTime = eventEntry->eventTime; in pokeUserActivityLocked()
1952 keyEntry->eventTime); in startDispatchCycleLocked()
1997 motionEntry->downTime, motionEntry->eventTime, in startDispatchCycleLocked()
2305 originalMotionEntry->eventTime, in splitMotionEvent()
2330 ALOGD("notifyConfigurationChanged - eventTime=%lld", args->eventTime); in notifyConfigurationChanged()
2337 ConfigurationChangedEntry* newEntry = new ConfigurationChangedEntry(args->eventTime); in notifyConfigurationChanged()
2350 args->eventTime, args->deviceId, args->source, args->policyFlags, in notifyKey()
2386 args->downTime, args->eventTime); in notifyKey()
2410 KeyEntry* newEntry = new KeyEntry(args->eventTime, in notifyKey()
2433 args->eventTime, args->deviceId, args->source, args->policyFlags, in notifyMotion()
2460 mPolicy->interceptMotionBeforeQueueing(args->eventTime, /*byref*/ policyFlags); in notifyMotion()
2473 args->downTime, args->eventTime, in notifyMotion()
2485 MotionEntry* newEntry = new MotionEntry(args->eventTime, in notifyMotion()
2509 args->eventTime, args->policyFlags, in notifySwitch()
2515 mPolicy->notifySwitch(args->eventTime, in notifySwitch()
2522 args->eventTime, args->deviceId); in notifyDeviceReset()
2529 DeviceResetEntry* newEntry = new DeviceResetEntry(args->eventTime, args->deviceId); in notifyDeviceReset()
2598 nsecs_t eventTime = motionEvent->getEventTime(); in injectInputEvent() local
2599 mPolicy->interceptMotionBeforeQueueing(eventTime, /*byref*/ policyFlags); in injectInputEvent()
3168 (currentTime - entry->eventTime) * 0.000001f); in dumpDispatchStateLocked()
3193 (currentTime - entry->eventEntry->eventTime) * 0.000001f); in dumpDispatchStateLocked()
3209 (currentTime - entry->eventEntry->eventTime) * 0.000001f, in dumpDispatchStateLocked()
3338 commandEntry->eventTime = currentTime; in onDispatchCycleFinishedLocked()
3356 nsecs_t eventTime, nsecs_t waitStartTime, const char* reason) { in onANRLocked() argument
3357 float dispatchLatency = (currentTime - eventTime) * 0.000001f; in onANRLocked()
3390 mPolicy->notifyConfigurationChanged(commandEntry->eventTime); in doNotifyConfigurationChangedInterruptible()
3450 nsecs_t finishTime = commandEntry->eventTime; in doDispatchCycleFinishedLockedInterruptible()
3644 keyEntry->eventTime = event.getEventTime(); in afterKeyEventLockedInterruptible()
3679 mPolicy->pokeUserActivity(commandEntry->eventTime, commandEntry->userActivityEventType); in doPokeUserActivityLockedInterruptible()
3687 entry->downTime, entry->eventTime); in initializeKeyEvent()
3774 InputDispatcher::EventEntry::EventEntry(int32_t type, nsecs_t eventTime, uint32_t policyFlags) : in EventEntry() argument
3775 refCount(1), type(type), eventTime(eventTime), policyFlags(policyFlags), in EventEntry()
3802 InputDispatcher::ConfigurationChangedEntry::ConfigurationChangedEntry(nsecs_t eventTime) : in ConfigurationChangedEntry() argument
3803 EventEntry(TYPE_CONFIGURATION_CHANGED, eventTime, 0) { in ConfigurationChangedEntry()
3816 InputDispatcher::DeviceResetEntry::DeviceResetEntry(nsecs_t eventTime, int32_t deviceId) : in DeviceResetEntry() argument
3817 EventEntry(TYPE_DEVICE_RESET, eventTime, 0), in DeviceResetEntry()
3831 InputDispatcher::KeyEntry::KeyEntry(nsecs_t eventTime, in KeyEntry() argument
3835 EventEntry(TYPE_KEY, eventTime, policyFlags), in KeyEntry()
3863 InputDispatcher::MotionEntry::MotionEntry(nsecs_t eventTime, in MotionEntry() argument
3869 EventEntry(TYPE_MOTION, eventTime, policyFlags), in MotionEntry()
3870 eventTime(eventTime), in MotionEntry()
4300 command(command), eventTime(0), keyEntry(NULL), userActivityEventType(0), in CommandEntry()