Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/reader/mapper/
DMultiTouchInputMapper.cpp225 MultiTouchInputMapper::MultiTouchInputMapper(InputDeviceContext& deviceContext) in MultiTouchInputMapper() function in android::MultiTouchInputMapper
228 MultiTouchInputMapper::~MultiTouchInputMapper() {} in ~MultiTouchInputMapper()
230 void MultiTouchInputMapper::reset(nsecs_t when) { in reset()
238 void MultiTouchInputMapper::process(const RawEvent* rawEvent) { in process()
244 std::optional<int32_t> MultiTouchInputMapper::getActiveBitId( in getActiveBitId()
258 void MultiTouchInputMapper::syncTouch(nsecs_t when, RawState* outState) { in syncTouch()
355 void MultiTouchInputMapper::configureRawPointerAxes() { in configureRawPointerAxes()
387 bool MultiTouchInputMapper::hasStylus() const { in hasStylus()
DMultiTouchInputMapper.h93 class MultiTouchInputMapper : public TouchInputMapper {
95 explicit MultiTouchInputMapper(InputDeviceContext& deviceContext);
96 ~MultiTouchInputMapper() override;
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp6052 void processPosition(MultiTouchInputMapper& mapper, int32_t x, int32_t y);
6053 void processTouchMajor(MultiTouchInputMapper& mapper, int32_t touchMajor);
6054 void processTouchMinor(MultiTouchInputMapper& mapper, int32_t touchMinor);
6055 void processToolMajor(MultiTouchInputMapper& mapper, int32_t toolMajor);
6056 void processToolMinor(MultiTouchInputMapper& mapper, int32_t toolMinor);
6057 void processOrientation(MultiTouchInputMapper& mapper, int32_t orientation);
6058 void processPressure(MultiTouchInputMapper& mapper, int32_t pressure);
6059 void processDistance(MultiTouchInputMapper& mapper, int32_t distance);
6060 void processId(MultiTouchInputMapper& mapper, int32_t id);
6061 void processSlot(MultiTouchInputMapper& mapper, int32_t slot);
[all …]
/frameworks/native/services/inputflinger/reader/
DAndroid.bp49 "mapper/MultiTouchInputMapper.cpp",
DInputDevice.cpp206 mappers.push_back(std::make_unique<MultiTouchInputMapper>(*contextPtr)); in addEventHubDevice()