Home
last modified time | relevance | path

Searched refs:AKEY_EVENT_ACTION_UP (Results 1 – 18 of 18) sorted by relevance

/frameworks/native/services/inputflinger/reader/mapper/
DTouchCursorInputMapperCommon.cpp36 (action == AKEY_EVENT_ACTION_UP && (lastButtonState & buttonState) && in synthesizeButtonKey()
DKeyboardInputMapper.cpp356 down ? AKEY_EVENT_ACTION_DOWN : AKEY_EVENT_ACTION_UP, flags, in processKey()
483 getDisplayId(), /*policyFlags=*/0, AKEY_EVENT_ACTION_UP, in cancelAllDownKeys()
DCursorInputMapper.cpp404 out += synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_UP, when, readTime, getDeviceId(), in sync()
DTouchInputMapper.cpp1624 out += synthesizeButtonKeys(getContext(), AKEY_EVENT_ACTION_UP, when, readTime, getDeviceId(), in cookAndDispatch()
1790 out.push_back(dispatchVirtualKey(when, readTime, policyFlags, AKEY_EVENT_ACTION_UP, in consumeRawTouches()
1818 out.push_back(dispatchVirtualKey(when, readTime, policyFlags, AKEY_EVENT_ACTION_UP, in consumeRawTouches()
/frameworks/native/services/inputflinger/dispatcher/
DInputState.cpp44 case AKEY_EVENT_ACTION_UP: { in trackKey()
421 AKEY_EVENT_ACTION_UP, in synthesizeCancelationEvents()
DInputDispatcher.cpp182 case AKEY_EVENT_ACTION_UP: in checkKeyAction()
1348 if (keyEntry.action == AKEY_EVENT_ACTION_UP && mPendingEvent && in enqueueInboundEventLocked()
1859 } else if (entry->action == AKEY_EVENT_ACTION_UP && mKeyRepeatState.lastKeyEntry && in dispatchKeyLocked()
3664 if (keyEntry.action == AKEY_EVENT_ACTION_UP) { in processInteractionsLocked()
6650 if (keyEntry.action == AKEY_EVENT_ACTION_UP) { in afterKeyEventLockedInterruptable()
6779 if (keyEntry.action != AKEY_EVENT_ACTION_UP) { in afterKeyEventLockedInterruptable()
/frameworks/native/include/android/
Dinput.h188 AKEY_EVENT_ACTION_UP = 1, enumerator
/frameworks/native/services/inputflinger/tests/
DFakeWindows.h259 consumeKeyEvent(testing::AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP),
DInputReader_test.cpp1220 firstMapper.setProcessResult({KeyArgsBuilder(AKEY_EVENT_ACTION_UP, AINPUT_SOURCE_KEYBOARD) in TEST_F()
1551 ASSERT_EQ(AKEY_EVENT_ACTION_UP, keyArgs.action); in TEST_F()
1571 const auto UP = AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP), WithSource(AINPUT_SOURCE_KEYBOARD)); in TEST_F()
2171 AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP), WithSource(AINPUT_SOURCE_KEYBOARD), in TYPED_TEST()
2217 AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP), WithSource(AINPUT_SOURCE_KEYBOARD), in TYPED_TEST()
2293 AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP), WithSource(AINPUT_SOURCE_KEYBOARD), in TYPED_TEST()
2331 AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP), WithSource(AINPUT_SOURCE_KEYBOARD), in TYPED_TEST()
2385 AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP), WithSource(AINPUT_SOURCE_KEYBOARD), in TYPED_TEST()
3353 ASSERT_EQ(AKEY_EVENT_ACTION_UP, args.action); in testDPadKeyRotation()
3401 ASSERT_EQ(AKEY_EVENT_ACTION_UP, args.action); in TEST_F()
[all …]
DFakeInputDispatcherPolicy.cpp415 if (inputEvent.getAction() == AKEY_EVENT_ACTION_UP) { in interceptKeyBeforeQueueing()
DInputTracingTest.cpp52 static_cast<int32_t>(AKEY_EVENT_ACTION_UP));
DInputDispatcher_test.cpp80 static_assert(AMOTION_EVENT_ACTION_UP == AKEY_EVENT_ACTION_UP);
552 return injectKey(dispatcher, AKEY_EVENT_ACTION_UP, /*repeatCount=*/0, displayId); in injectKeyUp()
5067 mDispatcher->notifyKey(generateKeyArgs(AKEY_EVENT_ACTION_UP, ui::LogicalDisplayId::DEFAULT)); in TEST_F()
5268 generateKeyArgs(AKEY_EVENT_ACTION_UP, ui::LogicalDisplayId::DEFAULT); in TEST_F()
8447 generateKeyArgs(AKEY_EVENT_ACTION_UP, ui::LogicalDisplayId::DEFAULT); in sendAndConsumeKeyUp()
8817 KeyArgsBuilder(AKEY_EVENT_ACTION_UP, AINPUT_SOURCE_KEYBOARD) in TEST_F()
8829 windowInPrimary->consumeKeyEvent(AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP), in TEST_F()
8902 keyArgs = generateKeyArgs(AKEY_EVENT_ACTION_UP); in testNotifyKey()
10626 result = injectKey(*mDispatcher, AKEY_EVENT_ACTION_UP, /*repeatCount=*/0, in TEST_F()
12159 mDispatcher->notifyKey(generateKeyArgs(AKEY_EVENT_ACTION_UP, ui::LogicalDisplayId::DEFAULT)); in TEST_F()
[all …]
DCursorInputMapper_test.cpp813 VariantWith<NotifyKeyArgs>(AllOf(WithKeyAction(AKEY_EVENT_ACTION_UP), in TEST_P()
DPointerChoreographer_test.cpp2327 mChoreographer.notifyKey(KeyArgsBuilder(AKEY_EVENT_ACTION_UP, AINPUT_SOURCE_KEYBOARD) in notifyKey()
/frameworks/native/libs/input/
DVirtualInputDevice.cpp92 {AKEY_EVENT_ACTION_UP, UinputAction::RELEASE},
DKeyCharacterMap.cpp502 down ? AKEY_EVENT_ACTION_DOWN : AKEY_EVENT_ACTION_UP, 0, keyCode, 0, metaState, in addKey()
DInput.cpp407 case AKEY_EVENT_ACTION_UP: in actionToString()
/frameworks/native/services/inputflinger/
DPointerChoreographer.cpp184 if (args.action == AKEY_EVENT_ACTION_UP || isMetaKey(args.keyCode)) { in fadeMouseCursorOnKeyPress()