Home
last modified time | relevance | path

Searched refs:AMOTION_EVENT_BUTTON_BACK (Results 1 – 10 of 10) sorted by relevance

/frameworks/native/services/vr/virtual_touchpad/
DVirtualTouchpadEvdev.cpp150 if (buttons & ~AMOTION_EVENT_BUTTON_BACK) { in ButtonState()
160 if (changes & AMOTION_EVENT_BUTTON_BACK) { in ButtonState()
161 touchpad.injector->SendKey(BTN_BACK, (buttons & AMOTION_EVENT_BUTTON_BACK) in ButtonState()
/frameworks/native/services/inputflinger/reader/mapper/accumulator/
DCursorButtonAccumulator.cpp93 result |= AMOTION_EVENT_BUTTON_BACK; in getButtonState()
/frameworks/native/services/inputflinger/reader/mapper/
DTouchCursorInputMapperCommon.cpp96 AMOTION_EVENT_BUTTON_BACK, AKEYCODE_BACK); in synthesizeButtonKeys()
/frameworks/native/services/vr/virtual_touchpad/tests/
DVirtualTouchpad_test.cpp243 touch_status = touchpad->ButtonState(t, AMOTION_EVENT_BUTTON_BACK); in TEST_F()
252 touch_status = touchpad->ButtonState(t, AMOTION_EVENT_BUTTON_BACK); in TEST_F()
/frameworks/native/include/android/
Dinput.h859 AMOTION_EVENT_BUTTON_BACK = 1 << 3, enumerator
/frameworks/native/libs/input/
DVirtualInputDevice.cpp251 {AMOTION_EVENT_BUTTON_BACK, BTN_BACK},
/frameworks/native/services/inputflinger/tests/
DCursorInputMapper_test.cpp819 testing::Values(std::make_tuple(BTN_SIDE, AMOTION_EVENT_BUTTON_BACK, AKEYCODE_BACK),
821 std::make_tuple(BTN_BACK, AMOTION_EVENT_BUTTON_BACK, AKEYCODE_BACK),
DInputReader_test.cpp5587 ASSERT_EQ(AMOTION_EVENT_BUTTON_BACK, motionArgs.buttonState); in TEST_F()
5591 ASSERT_EQ(AMOTION_EVENT_BUTTON_BACK, motionArgs.buttonState); in TEST_F()
5616 ASSERT_EQ(AMOTION_EVENT_BUTTON_BACK, motionArgs.buttonState); in TEST_F()
5620 ASSERT_EQ(AMOTION_EVENT_BUTTON_BACK, motionArgs.buttonState); in TEST_F()
8162 ASSERT_EQ(AMOTION_EVENT_BUTTON_BACK, motionArgs.buttonState); in TEST_F()
8166 ASSERT_EQ(AMOTION_EVENT_BUTTON_BACK, motionArgs.buttonState); in TEST_F()
8191 ASSERT_EQ(AMOTION_EVENT_BUTTON_BACK, motionArgs.buttonState); in TEST_F()
8195 ASSERT_EQ(AMOTION_EVENT_BUTTON_BACK, motionArgs.buttonState); in TEST_F()
/frameworks/native/services/inputflinger/reader/mapper/gestures/
DGestureConverter.cpp55 return AMOTION_EVENT_BUTTON_BACK; in gesturesButtonToMotionEventButton()
/frameworks/native/services/inputflinger/
DInputCommonConverter.cpp118 static_assert(static_cast<common::Button>(AMOTION_EVENT_BUTTON_BACK) == common::Button::BACK, in getActionButton()