Home
last modified time | relevance | path

Searched refs:InputProcessor (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/services/inputflinger/
DInputProcessor.cpp368 InputProcessor::InputProcessor(InputListenerInterface& listener) : mQueuedListener(listener) {} in InputProcessor() function in android::InputProcessor
370 void InputProcessor::onBinderDied(void* cookie) { in onBinderDied()
371 InputProcessor* processor = static_cast<InputProcessor*>(cookie); in onBinderDied()
379 void InputProcessor::setMotionClassifierEnabled(bool enabled) { in setMotionClassifierEnabled()
416 void InputProcessor::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
422 void InputProcessor::notifyConfigurationChanged(const NotifyConfigurationChangedArgs& args) { in notifyConfigurationChanged()
428 void InputProcessor::notifyKey(const NotifyKeyArgs& args) { in notifyKey()
434 void InputProcessor::notifyMotion(const NotifyMotionArgs& args) { in notifyMotion()
456 void InputProcessor::notifySensor(const NotifySensorArgs& args) { in notifySensor()
462 void InputProcessor::notifyVibratorState(const NotifyVibratorStateArgs& args) { in notifyVibratorState()
[all …]
DInputProcessor.h244 class InputProcessor : public InputProcessorInterface {
246 explicit InputProcessor(InputListenerInterface& listener);
261 ~InputProcessor();
DInputManager.cpp150 mProcessor = std::make_unique<InputProcessor>(*mTracingStages.back()); in InputManager()
DAndroid.bp92 "InputProcessor.cpp",
/frameworks/native/services/inputflinger/tests/fuzzers/
DInputClassifierFuzzer.cpp36 std::make_unique<InputProcessor>(*mFuzzListener); in LLVMFuzzerTestOneInput()
/frameworks/native/services/inputflinger/tests/
DInputProcessor_test.cpp63 void SetUp() override { mProcessor = std::make_unique<InputProcessor>(mTestListener); } in SetUp()