Home
last modified time | relevance | path

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

/frameworks/base/services/input/
DInputReader.h39 class InputMapper; variable
448 void addMapper(InputMapper* mapper);
490 Vector<InputMapper*> mMappers;
496 typedef int32_t (InputMapper::*GetStateFunc)(uint32_t sourceMask, int32_t code);
813 class InputMapper {
815 InputMapper(InputDevice* device);
816 virtual ~InputMapper();
855 class SwitchInputMapper : public InputMapper {
870 class KeyboardInputMapper : public InputMapper {
936 class CursorInputMapper : public InputMapper {
[all …]
DInputReader.cpp890 InputMapper* mapper = mMappers[i]; in dump()
895 void InputDevice::addMapper(InputMapper* mapper) { in addMapper()
909 InputMapper* mapper = mMappers[i]; in configure()
919 InputMapper* mapper = mMappers[i]; in reset()
960 InputMapper* mapper = mMappers[i]; in process()
970 InputMapper* mapper = mMappers[i]; in timeoutExpired()
980 InputMapper* mapper = mMappers[i]; in getDeviceInfo()
986 return getState(sourceMask, keyCode, & InputMapper::getKeyCodeState); in getKeyCodeState()
990 return getState(sourceMask, scanCode, & InputMapper::getScanCodeState); in getScanCodeState()
994 return getState(sourceMask, switchCode, & InputMapper::getSwitchState); in getSwitchState()
[all …]
/frameworks/base/services/input/tests/
DInputReader_test.cpp698 class FakeInputMapper : public InputMapper {
714 InputMapper(device), in FakeInputMapper()
773 InputMapper::populateDeviceInfo(deviceInfo); in populateDeviceInfo()
1427 void addMapperAndConfigure(InputMapper* mapper) { in addMapperAndConfigure()
1440 static void process(InputMapper* mapper, nsecs_t when, int32_t deviceId, int32_t type, in process()