Home
last modified time | relevance | path

Searched refs:mMappers (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/services/inputflinger/reader/
DInputDevice.cpp40 size_t numMappers = mMappers.size(); in ~InputDevice()
42 delete mMappers[i]; in ~InputDevice()
44 mMappers.clear(); in ~InputDevice()
106 size_t numMappers = mMappers.size(); in dump()
108 InputMapper* mapper = mMappers[i]; in dump()
114 mMappers.push_back(mapper); in addMapper()
166 for (InputMapper* mapper : mMappers) { in configure()
174 for (InputMapper* mapper : mMappers) { in reset()
211 for (InputMapper* mapper : mMappers) { in process()
220 for (InputMapper* mapper : mMappers) { in timeoutExpired()
[all …]
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h62 inline bool isIgnored() { return mMappers.empty(); } in isIgnored()
126 std::vector<InputMapper*> mMappers; variable