Lines Matching refs:KeyEntry

394         KeyEntry* typedEntry = static_cast<KeyEntry*>(mPendingEvent);  in dispatchOnceInnerLocked()
457 KeyEntry* keyEntry = static_cast<KeyEntry*>(entry); in enqueueInboundEventLocked()
600 bool InputDispatcher::isAppSwitchKeyEventLocked(KeyEntry* keyEntry) { in isAppSwitchKeyEventLocked()
692 InputDispatcher::KeyEntry* InputDispatcher::synthesizeKeyRepeatLocked(nsecs_t currentTime) { in synthesizeKeyRepeatLocked()
693 KeyEntry* entry = mKeyRepeatState.lastKeyEntry; in synthesizeKeyRepeatLocked()
704 KeyEntry* newEntry = new KeyEntry(currentTime, in synthesizeKeyRepeatLocked()
754 bool InputDispatcher::dispatchKeyLocked(nsecs_t currentTime, KeyEntry* entry, in dispatchKeyLocked()
794 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER) { in dispatchKeyLocked()
801 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN; in dispatchKeyLocked()
806 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN) { in dispatchKeyLocked()
817 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE; in dispatchKeyLocked()
819 } else if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_SKIP) { in dispatchKeyLocked()
852 void InputDispatcher::logOutboundKeyDetailsLocked(const char* prefix, const KeyEntry* entry) { in logOutboundKeyDetailsLocked()
1822 const KeyEntry* keyEntry = static_cast<const KeyEntry*>(eventEntry); in pokeUserActivityLocked()
1927 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry); in enqueueDispatchEntryLocked()
2016 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry); in startDispatchCycleLocked()
2284 static_cast<KeyEntry*>(cancelationEventEntry)); in synthesizeCancelationEventsForConnectionLocked()
2509 KeyEntry* newEntry = new KeyEntry(args->eventTime, in notifyKey()
2687 firstInjectedEntry = new KeyEntry(keyEvent->getEventTime(), in injectInputEvent()
3592 KeyEntry* entry = commandEntry->keyEntry; in doInterceptKeyBeforeDispatchingLockedInterruptible()
3610 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_SKIP; in doInterceptKeyBeforeDispatchingLockedInterruptible()
3612 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE; in doInterceptKeyBeforeDispatchingLockedInterruptible()
3614 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER; in doInterceptKeyBeforeDispatchingLockedInterruptible()
3641 KeyEntry* keyEntry = static_cast<KeyEntry*>(dispatchEntry->eventEntry); in doDispatchCycleFinishedLockedInterruptible()
3673 DispatchEntry* dispatchEntry, KeyEntry* keyEntry, bool handled) { in afterKeyEventLockedInterruptible()
3857 void InputDispatcher::initializeKeyEvent(KeyEvent* event, const KeyEntry* entry) { in initializeKeyEvent()
3993 InputDispatcher::KeyEntry::KeyEntry(nsecs_t eventTime, in KeyEntry() function in android::InputDispatcher::KeyEntry
4001 syntheticRepeat(false), interceptKeyResult(KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN), in KeyEntry()
4005 InputDispatcher::KeyEntry::~KeyEntry() { in ~KeyEntry()
4008 void InputDispatcher::KeyEntry::appendDescription(std::string& msg) const { in appendDescription()
4016 void InputDispatcher::KeyEntry::recycle() { in recycle()
4021 interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN; in recycle()
4123 bool InputDispatcher::InputState::trackKey(const KeyEntry* entry, in trackKey()
4274 ssize_t InputDispatcher::InputState::findKeyMemento(const KeyEntry* entry) const { in findKeyMemento()
4301 void InputDispatcher::InputState::addKeyMemento(const KeyEntry* entry, int32_t flags) { in addKeyMemento()
4343 outEvents.push(new KeyEntry(currentTime, in synthesizeCancelationEvents()