Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/reader/mapper/
DMultiTouchInputMapper.cpp222 MultiTouchInputMapper::MultiTouchInputMapper(InputDevice* device) : TouchInputMapper(device) {} in MultiTouchInputMapper() function in android::MultiTouchInputMapper
224 MultiTouchInputMapper::~MultiTouchInputMapper() {} in ~MultiTouchInputMapper()
226 void MultiTouchInputMapper::reset(nsecs_t when) { in reset()
234 void MultiTouchInputMapper::process(const RawEvent* rawEvent) { in process()
240 void MultiTouchInputMapper::syncTouch(nsecs_t when, RawState* outState) { in syncTouch()
326 void MultiTouchInputMapper::configureRawPointerAxes() { in configureRawPointerAxes()
357 bool MultiTouchInputMapper::hasStylus() const { in hasStylus()
DMultiTouchInputMapper.h94 class MultiTouchInputMapper : public TouchInputMapper {
96 explicit MultiTouchInputMapper(InputDevice* device);
97 virtual ~MultiTouchInputMapper();
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp4697 void processPosition(MultiTouchInputMapper* mapper, int32_t x, int32_t y);
4698 void processTouchMajor(MultiTouchInputMapper* mapper, int32_t touchMajor);
4699 void processTouchMinor(MultiTouchInputMapper* mapper, int32_t touchMinor);
4700 void processToolMajor(MultiTouchInputMapper* mapper, int32_t toolMajor);
4701 void processToolMinor(MultiTouchInputMapper* mapper, int32_t toolMinor);
4702 void processOrientation(MultiTouchInputMapper* mapper, int32_t orientation);
4703 void processPressure(MultiTouchInputMapper* mapper, int32_t pressure);
4704 void processDistance(MultiTouchInputMapper* mapper, int32_t distance);
4705 void processId(MultiTouchInputMapper* mapper, int32_t id);
4706 void processSlot(MultiTouchInputMapper* mapper, int32_t slot);
[all …]
/frameworks/native/services/inputflinger/reader/
DAndroid.bp40 "mapper/MultiTouchInputMapper.cpp",
DInputReader.cpp298 device->addMapper(new MultiTouchInputMapper(device)); in createDeviceLocked()