Home
last modified time | relevance | path

Searched refs:MultiTouchInputMapper (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/services/inputflinger/reader/mapper/
DMultiTouchInputMapper.cpp31 MultiTouchInputMapper::MultiTouchInputMapper(InputDeviceContext& deviceContext, in MultiTouchInputMapper() function in android::MultiTouchInputMapper
35 MultiTouchInputMapper::~MultiTouchInputMapper() {} in ~MultiTouchInputMapper()
37 std::list<NotifyArgs> MultiTouchInputMapper::reset(nsecs_t when) { in reset()
43 std::list<NotifyArgs> MultiTouchInputMapper::process(const RawEvent& rawEvent) { in process()
50 std::optional<int32_t> MultiTouchInputMapper::getActiveBitId( in getActiveBitId()
64 void MultiTouchInputMapper::syncTouch(nsecs_t when, RawState* outState) { in syncTouch()
177 std::list<NotifyArgs> MultiTouchInputMapper::reconfigure(nsecs_t when, in reconfigure()
189 void MultiTouchInputMapper::configureRawPointerAxes() { in configureRawPointerAxes()
221 bool MultiTouchInputMapper::hasStylus() const { in hasStylus()
DMultiTouchInputMapper.h24 class MultiTouchInputMapper : public TouchInputMapper {
31 ~MultiTouchInputMapper() override;
45 explicit MultiTouchInputMapper(InputDeviceContext& deviceContext,
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp128 static void assertAxisResolution(MultiTouchInputMapper& mapper, int axis, float resolution) { in assertAxisResolution()
137 static void assertAxisNotPresent(MultiTouchInputMapper& mapper, int axis) { in assertAxisNotPresent()
7080 void processPosition(MultiTouchInputMapper& mapper, int32_t x, int32_t y);
7081 void processTouchMajor(MultiTouchInputMapper& mapper, int32_t touchMajor);
7082 void processTouchMinor(MultiTouchInputMapper& mapper, int32_t touchMinor);
7083 void processToolMajor(MultiTouchInputMapper& mapper, int32_t toolMajor);
7084 void processToolMinor(MultiTouchInputMapper& mapper, int32_t toolMinor);
7085 void processOrientation(MultiTouchInputMapper& mapper, int32_t orientation);
7086 void processPressure(MultiTouchInputMapper& mapper, int32_t pressure);
7087 void processDistance(MultiTouchInputMapper& mapper, int32_t distance);
[all …]
DMultiTouchInputMapper_test.cpp116 mMapper = createInputMapper<MultiTouchInputMapper>(*mDeviceContext, in SetUp()
/frameworks/native/services/inputflinger/tests/fuzzers/
DMultiTouchInputFuzzer.cpp71 MultiTouchInputMapper& mapper = in LLVMFuzzerTestOneInput()
72 getMapperForDevice<ThreadSafeFuzzedDataProvider, MultiTouchInputMapper>(*fdp.get(), in LLVMFuzzerTestOneInput()
/frameworks/native/services/inputflinger/reader/
DAndroid.bp52 "mapper/MultiTouchInputMapper.cpp",
DInputDevice.cpp551 mappers.push_back(createInputMapper<MultiTouchInputMapper>(contextPtr, readerConfig)); in createMappers()