Home
last modified time | relevance | path

Searched refs:InputListenerInterface (Results 1 – 13 of 13) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/include/
H A DInputListener.h29 class InputListenerInterface; variable
43 virtual void notify(const sp<InputListenerInterface>& listener) const = 0;
60 virtual void notify(const sp<InputListenerInterface>& listener) const;
91 virtual void notify(const sp<InputListenerInterface>& listener) const;
145 virtual void notify(const sp<InputListenerInterface>& listener) const;
190 virtual void notify(const sp<InputListenerInterface>& listener) const;
251 class InputListenerInterface : public virtual RefBase {
253 InputListenerInterface() { } in InputListenerInterface() function
254 virtual ~InputListenerInterface() { } in ~InputListenerInterface()
272 class QueuedInputListener : public InputListenerInterface {
[all …]
H A DInputReaderFactory.h23 class InputListenerInterface; variable
27 const sp<InputListenerInterface>& listener);
/aosp12/frameworks/native/services/inputflinger/
H A DInputListener.cpp47 void NotifyConfigurationChangedArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
92 void NotifyKeyArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
191 void NotifyMotionArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
215 void NotifySwitchArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
250 void NotifySensorArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
268 void NotifyVibratorStateArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
284 void NotifyDeviceResetArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
302 void NotifyPointerCaptureChangedArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
315 QueuedInputListener::QueuedInputListener(const sp<InputListenerInterface>& innerListener) : in QueuedInputListener()
H A DInputClassifier.h91 class InputClassifierInterface : public virtual RefBase, public InputListenerInterface {
226 explicit InputClassifier(const sp<InputListenerInterface>& listener);
248 sp<InputListenerInterface> mListener;
H A DInputClassifier.cpp348 InputClassifier::InputClassifier(const sp<InputListenerInterface>& listener) in InputClassifier()
/aosp12/frameworks/native/services/inputflinger/reader/include/
H A DInputReaderContext.h28 class InputListenerInterface; variable
58 virtual InputListenerInterface* getListener() = 0;
H A DInputReader.h56 const sp<InputListenerInterface>& listener);
146 InputListenerInterface* getListener() REQUIRES(mReader->mLock) override;
/aosp12/frameworks/native/services/inputflinger/reader/
H A DInputReaderFactory.cpp24 const sp<InputListenerInterface>& listener) { in createInputReader()
H A DInputReader.cpp45 const sp<InputListenerInterface>& listener) in InputReader()
954 InputListenerInterface* InputReader::ContextImpl::getListener() { in getListener()
/aosp12/frameworks/native/services/inputflinger/dispatcher/include/
H A DInputDispatcherInterface.h36 class InputDispatcherInterface : public virtual RefBase, public InputListenerInterface {
/aosp12/frameworks/native/services/inputflinger/tests/
H A DTestInputListener.h30 class TestInputListener : public InputListenerInterface {
H A DInputReader_test.cpp1175 const sp<InputListenerInterface>& listener) in InstrumentedInputReader()
/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DInputMapper.h51 inline InputListenerInterface* getListener() { return getContext()->getListener(); } in getListener()