Home
last modified time | relevance | path

Searched refs:NotifyInputDevicesChangedArgs (Results 1 – 22 of 22) sorted by relevance

/frameworks/native/services/inputflinger/include/
DNotifyArgs.h28 struct NotifyInputDevicesChangedArgs { struct
32 inline NotifyInputDevicesChangedArgs() {} in NotifyInputDevicesChangedArgs() argument
34 NotifyInputDevicesChangedArgs(int32_t id, std::vector<InputDeviceInfo> infos);
36 bool operator==(const NotifyInputDevicesChangedArgs& rhs) const = default;
38 NotifyInputDevicesChangedArgs(const NotifyInputDevicesChangedArgs& other) = default;
39 NotifyInputDevicesChangedArgs& operator=(const NotifyInputDevicesChangedArgs&) = default; argument
237 std::variant<NotifyInputDevicesChangedArgs, NotifyConfigurationChangedArgs, NotifyKeyArgs,
DInputListener.h40 virtual void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) = 0;
62 virtual void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
86 virtual void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
/frameworks/native/services/inputflinger/tests/
DTestInputListener.h39 NotifyInputDevicesChangedArgs* outEventArgs = nullptr);
86 virtual void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
109 std::tuple<std::vector<NotifyInputDevicesChangedArgs>, //
DTestInputListener.cpp33 NotifyInputDevicesChangedArgs* outEventArgs) { in assertNotifyInputDevicesChangedWasCalled()
35 assertCalled<NotifyInputDevicesChangedArgs>(outEventArgs, in assertNotifyInputDevicesChangedWasCalled()
191 void TestInputListener::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
192 addToQueue<NotifyInputDevicesChangedArgs>(args); in notifyInputDevicesChanged()
DUnwantedInteractionBlocker_test.cpp594 NotifyInputDevicesChangedArgs deviceChangedArgs = {/*id=*/0, {generateTestDeviceInfo()}}; in TEST_F()
624 NotifyInputDevicesChangedArgs deviceChangedArgs = {/*id=*/0, {generateTestDeviceInfo()}}; in TEST_F()
DPointerChoreographer_test.cpp198 allArgs{NotifyInputDevicesChangedArgs{}, in TEST_F()
214 [&](const NotifyInputDevicesChangedArgs& args) { in TEST_F()
/frameworks/native/services/inputflinger/
DInputListener.cpp49 [&](const NotifyInputDevicesChangedArgs& args) { notifyInputDevicesChanged(args); }, in notify()
67 void QueuedInputListener::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
115 void TracedInputListener::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
DNotifyArgs.cpp34 NotifyInputDevicesChangedArgs::NotifyInputDevicesChangedArgs(int32_t id, in NotifyInputDevicesChangedArgs() function in android::NotifyInputDevicesChangedArgs
200 [&](const NotifyInputDevicesChangedArgs&) { return "NotifyInputDevicesChangedArgs"; }, in toString()
DInputFilter.h55 void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
DUnwantedInteractionBlocker.h93 void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
DInputFilter.cpp56 void InputFilter::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
DInputProcessor.h248 void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
DInputDeviceMetricsCollector.h109 void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
DPointerChoreographer.h107 void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
DInputDeviceMetricsCollector.cpp127 const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
DInputProcessor.cpp416 void InputProcessor::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
DUnwantedInteractionBlocker.cpp432 const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
DPointerChoreographer.cpp154 void PointerChoreographer::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
/frameworks/native/services/inputflinger/tests/fuzzers/
DMapperHelpers.h295 void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override {} in notifyInputDevicesChanged()
/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.h99 void notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) override;
DInputDispatcher.cpp4441 void InputDispatcher::notifyInputDevicesChanged(const NotifyInputDevicesChangedArgs& args) { in notifyInputDevicesChanged()
/frameworks/native/services/inputflinger/reader/
DInputReader.cpp186 NotifyInputDevicesChangedArgs{mContext.getNextId(), inputDevices}); in loopOnce()