Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/reader/
DInputDevice.cpp137 for_each_mapper([&dump](InputMapper& mapper) { mapper.dump(dump); }); in dump()
354 for_each_mapper([this, when, config, changes](InputMapper& mapper) { in configure()
368 for_each_mapper([when](InputMapper& mapper) { mapper.reset(when); }); in reset()
412 for_each_mapper([when](InputMapper& mapper) { mapper.timeoutExpired(when); }); in timeoutExpired()
416 for_each_mapper([state](InputMapper& mapper) { mapper.updateExternalStylusState(state); }); in updateExternalStylusState()
423 for_each_mapper( in getDeviceInfo()
469 for_each_mapper([&result, sourceMask, numCodes, keyCodes, outFlags](InputMapper& mapper) { in markSupportedKeyCodes()
478 for_each_mapper([sequence, repeat, token](InputMapper& mapper) { in vibrate()
484 for_each_mapper([token](InputMapper& mapper) { mapper.cancelVibrate(token); }); in cancelVibrate()
489 for_each_mapper([&vibrating](InputMapper& mapper) { vibrating |= mapper.isVibrating(); }); in isVibrating()
[all …]
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h184 inline void for_each_mapper(std::function<void(InputMapper&)> f) { in for_each_mapper() function