Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/reader/mapper/
DSingleTouchInputMapper.cpp21 SingleTouchInputMapper::SingleTouchInputMapper(InputDeviceContext& deviceContext, in SingleTouchInputMapper() function in android::SingleTouchInputMapper
25 SingleTouchInputMapper::~SingleTouchInputMapper() {} in ~SingleTouchInputMapper()
27 std::list<NotifyArgs> SingleTouchInputMapper::reset(nsecs_t when) { in reset()
33 std::list<NotifyArgs> SingleTouchInputMapper::process(const RawEvent& rawEvent) { in process()
40 void SingleTouchInputMapper::syncTouch(nsecs_t when, RawState* outState) { in syncTouch()
72 void SingleTouchInputMapper::configureRawPointerAxes() { in configureRawPointerAxes()
84 bool SingleTouchInputMapper::hasStylus() const { in hasStylus()
DSingleTouchInputMapper.h24 class SingleTouchInputMapper : public TouchInputMapper {
31 ~SingleTouchInputMapper() override;
43 explicit SingleTouchInputMapper(InputDeviceContext& deviceContext,
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp4490 void processDown(SingleTouchInputMapper& mapper, int32_t x, int32_t y);
4491 void processMove(SingleTouchInputMapper& mapper, int32_t x, int32_t y);
4492 void processUp(SingleTouchInputMapper& mappery);
4493 void processPressure(SingleTouchInputMapper& mapper, int32_t pressure);
4494 void processToolMajor(SingleTouchInputMapper& mapper, int32_t toolMajor);
4495 void processDistance(SingleTouchInputMapper& mapper, int32_t distance);
4496 void processTilt(SingleTouchInputMapper& mapper, int32_t tiltX, int32_t tiltY);
4497 void processKey(SingleTouchInputMapper& mapper, int32_t code, int32_t value);
4498 void processSync(SingleTouchInputMapper& mapper);
4528 void SingleTouchInputMapperTest::processDown(SingleTouchInputMapper& mapper, int32_t x, int32_t y) { in processDown()
[all …]
/frameworks/native/services/inputflinger/reader/
DAndroid.bp55 "mapper/SingleTouchInputMapper.cpp",
DInputDevice.cpp553 mappers.push_back(createInputMapper<SingleTouchInputMapper>(contextPtr, readerConfig)); in createMappers()