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.cpp139 for_each_mapper([&dump](InputMapper& mapper) { mapper.dump(dump); }); in dump()
360 for_each_mapper([this, when, config, changes](InputMapper& mapper) { in configure()
374 for_each_mapper([when](InputMapper& mapper) { mapper.reset(when); }); in reset()
419 for_each_mapper([when](InputMapper& mapper) { mapper.timeoutExpired(when); }); in timeoutExpired()
423 for_each_mapper([state](InputMapper& mapper) { mapper.updateExternalStylusState(state); }); in updateExternalStylusState()
430 for_each_mapper( in getDeviceInfo()
476 for_each_mapper([&result, sourceMask, numCodes, keyCodes, outFlags](InputMapper& mapper) { in markSupportedKeyCodes()
502 for_each_mapper([sequence, repeat, token](InputMapper& mapper) { in vibrate()
508 for_each_mapper([token](InputMapper& mapper) { mapper.cancelVibrate(token); }); in cancelVibrate()
513 for_each_mapper([&vibrating](InputMapper& mapper) { vibrating |= mapper.isVibrating(); }); in isVibrating()
[all …]
/frameworks/native/services/inputflinger/reader/include/
DInputDevice.h188 inline void for_each_mapper(std::function<void(InputMapper&)> f) { in for_each_mapper() function