Home
last modified time | relevance | path

Searched refs:InputMapper (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/services/inputflinger/
DInputReader.cpp1058 InputMapper* mapper = mMappers[i]; in dump()
1063 void InputDevice::addMapper(InputMapper* mapper) { in addMapper()
1115 for (InputMapper* mapper : mMappers) { in configure()
1123 for (InputMapper* mapper : mMappers) { in reset()
1161 for (InputMapper* mapper : mMappers) { in process()
1170 for (InputMapper* mapper : mMappers) { in timeoutExpired()
1176 for (InputMapper* mapper : mMappers) { in updateExternalStylusState()
1184 for (InputMapper* mapper : mMappers) { in getDeviceInfo()
1190 return getState(sourceMask, keyCode, & InputMapper::getKeyCodeState); in getKeyCodeState()
1194 return getState(sourceMask, scanCode, & InputMapper::getScanCodeState); in getScanCodeState()
[all …]
DInputReader.h44 class InputMapper; variable
275 void addMapper(InputMapper* mapper);
334 std::vector<InputMapper*> mMappers;
342 typedef int32_t (InputMapper::*GetStateFunc)(uint32_t sourceMask, int32_t code);
746 class InputMapper {
748 explicit InputMapper(InputDevice* device);
749 virtual ~InputMapper();
799 class SwitchInputMapper : public InputMapper {
819 class VibratorInputMapper : public InputMapper {
848 class KeyboardInputMapper : public InputMapper {
[all …]
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp861 class FakeInputMapper : public InputMapper {
878 InputMapper(device), in FakeInputMapper()
937 InputMapper::populateDeviceInfo(deviceInfo); in populateDeviceInfo()
1821 void addMapperAndConfigure(InputMapper* mapper) { in addMapperAndConfigure()
1839 static void process(InputMapper* mapper, nsecs_t when, int32_t type, in process()