Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/include/
DInputListener.h29 class InputListenerInterface; variable
44 virtual void notify(const sp<InputListenerInterface>& listener) const = 0;
61 virtual void notify(const sp<InputListenerInterface>& listener) const;
90 virtual void notify(const sp<InputListenerInterface>& listener) const;
142 virtual void notify(const sp<InputListenerInterface>& listener) const;
163 virtual void notify(const sp<InputListenerInterface>& listener) const;
182 virtual void notify(const sp<InputListenerInterface>& listener) const;
189 class InputListenerInterface : public virtual RefBase {
191 InputListenerInterface() { } in InputListenerInterface() function
192 virtual ~InputListenerInterface() { } in ~InputListenerInterface()
[all …]
DInputReaderFactory.h23 class InputListenerInterface; variable
27 const sp<InputListenerInterface>& listener);
/frameworks/native/services/inputflinger/
DInputListener.cpp43 void NotifyConfigurationChangedArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
83 void NotifyKeyArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
164 void NotifyMotionArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
190 void NotifySwitchArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
212 void NotifyDeviceResetArgs::notify(const sp<InputListenerInterface>& listener) const { in notify()
219 QueuedInputListener::QueuedInputListener(const sp<InputListenerInterface>& innerListener) : in QueuedInputListener()
DInputClassifier.h91 class InputClassifierInterface : public virtual RefBase, public InputListenerInterface {
224 explicit InputClassifier(const sp<InputListenerInterface>& listener);
243 sp<InputListenerInterface> mListener;
DInputClassifier.cpp342 InputClassifier::InputClassifier(const sp<InputListenerInterface>& listener) in InputClassifier()
/frameworks/native/services/inputflinger/reader/include/
DInputReaderContext.h28 class InputListenerInterface; variable
57 virtual InputListenerInterface* getListener() = 0;
DInputReader.h53 const sp<InputListenerInterface>& listener);
104 virtual InputListenerInterface* getListener();
/frameworks/native/services/inputflinger/reader/
DInputReaderFactory.cpp24 const sp<InputListenerInterface>& listener) { in createInputReader()
DInputReader.cpp53 const sp<InputListenerInterface>& listener) in InputReader()
755 InputListenerInterface* InputReader::ContextImpl::getListener() { in getListener()
/frameworks/native/services/inputflinger/tests/
DTestInputListener.h27 class TestInputListener : public InputListenerInterface {
DInputReader_test.cpp789 sp<InputListenerInterface> mListener;
798 const sp<InputListenerInterface>& listener) : in FakeInputReaderContext()
836 virtual InputListenerInterface* getListener() { in getListener()
1028 const sp<InputListenerInterface>& listener) : in InstrumentedInputReader()
/frameworks/native/services/inputflinger/dispatcher/include/
DInputDispatcherInterface.h52 class InputDispatcherInterface : public virtual RefBase, public InputListenerInterface {
/frameworks/native/services/inputflinger/reader/mapper/
DInputMapper.h50 inline InputListenerInterface* getListener() { return mContext->getListener(); } in getListener()