Home
last modified time | relevance | path

Searched refs:AMOTION_EVENT_ACTION_MASK (Results 1 – 12 of 12) sorted by relevance

/frameworks/native/include/android/
Dinput.h288 AMOTION_EVENT_ACTION_MASK = 0xff, enumerator
/frameworks/native/libs/input/rust/
Dinput.rs187 let action_masked = action & input_bindgen::AMOTION_EVENT_ACTION_MASK; in breakdown_action()
/frameworks/native/services/inputflinger/dispatcher/
DEntry.cpp49 const int actionMasked = entry.action & AMOTION_EVENT_ACTION_MASK; in verifiedMotionEventFromMotionEntry()
DInputState.cpp110 int32_t actionMasked = entry.action & AMOTION_EVENT_ACTION_MASK; in trackMotion()
DInputDispatcher.cpp2039 (entry->action & AMOTION_EVENT_ACTION_MASK) == AMOTION_EVENT_ACTION_POINTER_DOWN) { in dispatchMotionLocked()
2893 const int32_t maskedAction = entry.action & AMOTION_EVENT_ACTION_MASK; in addDragEventLocked()
3723 int32_t maskedAction = action & AMOTION_EVENT_ACTION_MASK; in dispatchPointerDownOutsideFocus()
/frameworks/native/services/inputflinger/
DInputProcessor.cpp305 if ((args.action & AMOTION_EVENT_ACTION_MASK) == AMOTION_EVENT_ACTION_DOWN) { in classify()
DInputCommonConverter.cpp321 event.action = getAction(args.action & AMOTION_EVENT_ACTION_MASK); in notifyMotionArgsToHalMotionEvent()
/frameworks/native/libs/input/
DInput.cpp949 switch (action & AMOTION_EVENT_ACTION_MASK) { in isTouchEvent()
973 switch (action & AMOTION_EVENT_ACTION_MASK) { in actionToString()
DInputConsumer.cpp470 switch (msg.body.motion.action & AMOTION_EVENT_ACTION_MASK) { in updateTouchState()
/frameworks/native/include/input/
DInput.h650 static int32_t getActionMasked(int32_t action) { return action & AMOTION_EVENT_ACTION_MASK; } in getActionMasked()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp9987 ASSERT_EQ(AMOTION_EVENT_ACTION_POINTER_DOWN, motionArgs.action & AMOTION_EVENT_ACTION_MASK); in TEST_F()
DInputDispatcher_test.cpp7343 EXPECT_EQ(motionArgs.action & AMOTION_EVENT_ACTION_MASK, verifiedMotion.actionMasked); in TEST_F()