Lines Matching refs:KeyEntry

355         KeyEntry* typedEntry = static_cast<KeyEntry*>(mPendingEvent);  in dispatchOnceInnerLocked()
418 KeyEntry* keyEntry = static_cast<KeyEntry*>(entry); in enqueueInboundEventLocked()
561 bool InputDispatcher::isAppSwitchKeyEventLocked(KeyEntry* keyEntry) { in isAppSwitchKeyEventLocked()
653 InputDispatcher::KeyEntry* InputDispatcher::synthesizeKeyRepeatLocked(nsecs_t currentTime) { in synthesizeKeyRepeatLocked()
654 KeyEntry* entry = mKeyRepeatState.lastKeyEntry; in synthesizeKeyRepeatLocked()
665 KeyEntry* newEntry = new KeyEntry(currentTime, in synthesizeKeyRepeatLocked()
714 bool InputDispatcher::dispatchKeyLocked(nsecs_t currentTime, KeyEntry* entry, in dispatchKeyLocked()
754 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER) { in dispatchKeyLocked()
761 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN; in dispatchKeyLocked()
766 if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN) { in dispatchKeyLocked()
777 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE; in dispatchKeyLocked()
779 } else if (entry->interceptKeyResult == KeyEntry::INTERCEPT_KEY_RESULT_SKIP) { in dispatchKeyLocked()
812 void InputDispatcher::logOutboundKeyDetailsLocked(const char* prefix, const KeyEntry* entry) { in logOutboundKeyDetailsLocked()
1786 const KeyEntry* keyEntry = static_cast<const KeyEntry*>(eventEntry); in pokeUserActivityLocked()
1891 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry); in enqueueDispatchEntryLocked()
1980 KeyEntry* keyEntry = static_cast<KeyEntry*>(eventEntry); in startDispatchCycleLocked()
2248 static_cast<KeyEntry*>(cancelationEventEntry)); in synthesizeCancelationEventsForConnectionLocked()
2467 KeyEntry* newEntry = new KeyEntry(args->eventTime, in notifyKey()
2633 firstInjectedEntry = new KeyEntry(keyEvent->getEventTime(), in injectInputEvent()
3534 KeyEntry* entry = commandEntry->keyEntry; in doInterceptKeyBeforeDispatchingLockedInterruptible()
3547 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_SKIP; in doInterceptKeyBeforeDispatchingLockedInterruptible()
3549 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_CONTINUE; in doInterceptKeyBeforeDispatchingLockedInterruptible()
3551 entry->interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_TRY_AGAIN_LATER; in doInterceptKeyBeforeDispatchingLockedInterruptible()
3578 KeyEntry* keyEntry = static_cast<KeyEntry*>(dispatchEntry->eventEntry); in doDispatchCycleFinishedLockedInterruptible()
3610 DispatchEntry* dispatchEntry, KeyEntry* keyEntry, bool handled) { in afterKeyEventLockedInterruptible()
3794 void InputDispatcher::initializeKeyEvent(KeyEvent* event, const KeyEntry* entry) { in initializeKeyEvent()
3931 InputDispatcher::KeyEntry::KeyEntry(nsecs_t eventTime, in KeyEntry() function in android::InputDispatcher::KeyEntry
3939 syntheticRepeat(false), interceptKeyResult(KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN), in KeyEntry()
3943 InputDispatcher::KeyEntry::~KeyEntry() { in ~KeyEntry()
3946 void InputDispatcher::KeyEntry::appendDescription(String8& msg) const { in appendDescription()
3954 void InputDispatcher::KeyEntry::recycle() { in recycle()
3959 interceptKeyResult = KeyEntry::INTERCEPT_KEY_RESULT_UNKNOWN; in recycle()
4061 bool InputDispatcher::InputState::trackKey(const KeyEntry* entry, in trackKey()
4212 ssize_t InputDispatcher::InputState::findKeyMemento(const KeyEntry* entry) const { in findKeyMemento()
4239 void InputDispatcher::InputState::addKeyMemento(const KeyEntry* entry, int32_t flags) { in addKeyMemento()
4281 outEvents.push(new KeyEntry(currentTime, in synthesizeCancelationEvents()