Home
last modified time | relevance | path

Searched refs:getAbsoluteAxisValue (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/services/inputflinger/reader/mapper/accumulator/
DSingleTouchMotionAccumulator.cpp29 mAbsX = deviceContext.getAbsoluteAxisValue(ABS_X); in reset()
30 mAbsY = deviceContext.getAbsoluteAxisValue(ABS_Y); in reset()
31 mAbsPressure = deviceContext.getAbsoluteAxisValue(ABS_PRESSURE); in reset()
32 mAbsToolWidth = deviceContext.getAbsoluteAxisValue(ABS_TOOL_WIDTH); in reset()
33 mAbsDistance = deviceContext.getAbsoluteAxisValue(ABS_DISTANCE); in reset()
34 mAbsTiltX = deviceContext.getAbsoluteAxisValue(ABS_TILT_X); in reset()
35 mAbsTiltY = deviceContext.getAbsoluteAxisValue(ABS_TILT_Y); in reset()
DMultiTouchMotionAccumulator.cpp143 if (const auto status = deviceContext.getAbsoluteAxisValue(ABS_MT_SLOT, &initialSlot); in populateCurrentSlot()
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h382 inline status_t getAbsoluteAxisValue(int32_t code, int32_t* outValue) const { in getAbsoluteAxisValue() function
383 return mEventHub->getAbsoluteAxisValue(mId, code, outValue); in getAbsoluteAxisValue()
445 inline int32_t getAbsoluteAxisValue(int32_t code) const { in getAbsoluteAxisValue() function
447 mEventHub->getAbsoluteAxisValue(mId, code, &value); in getAbsoluteAxisValue()
DEventHub.h342 virtual status_t getAbsoluteAxisValue(int32_t deviceId, int32_t axis,
562 status_t getAbsoluteAxisValue(int32_t deviceId, int32_t axis,
/frameworks/native/services/inputflinger/tests/
DMultiTouchInputMapper_test.cpp102 EXPECT_CALL(mMockEventHub, getAbsoluteAxisValue(EVENTHUB_ID, ABS_MT_SLOT, _)) in SetUp()
214 EXPECT_CALL(mMockEventHub, getAbsoluteAxisValue(EVENTHUB_ID, ABS_MT_SLOT, _)) in TEST_F()
DTouchpadInputMapper_test.cpp106 EXPECT_CALL(mMockEventHub, getAbsoluteAxisValue(EVENTHUB_ID, ABS_MT_SLOT, testing::_)) in SetUp()
DInterfaceMocks.h134 MOCK_METHOD(status_t, getAbsoluteAxisValue, (int32_t deviceId, int32_t axis, int32_t* outValue),
DFakeEventHub.h190 status_t getAbsoluteAxisValue(int32_t deviceId, int32_t axis, int32_t* outValue) const override;
DFakeEventHub.cpp420 status_t FakeEventHub::getAbsoluteAxisValue(int32_t deviceId, int32_t axis, in getAbsoluteAxisValue() function in android::FakeEventHub
/frameworks/native/services/inputflinger/tests/fuzzers/
DMapperHelpers.h200 status_t getAbsoluteAxisValue(int32_t deviceId, int32_t axis, in getAbsoluteAxisValue() function
/frameworks/native/services/inputflinger/reader/
DEventHub.cpp1133 status_t EventHub::getAbsoluteAxisValue(int32_t deviceId, int32_t axis, int32_t* outValue) const { in getAbsoluteAxisValue() function in android::EventHub