Home
last modified time | relevance | path

Searched refs:QueuedInputListener (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/
H A DInputListener.cpp315 QueuedInputListener::QueuedInputListener(const sp<InputListenerInterface>& innerListener) : in QueuedInputListener() function in android::QueuedInputListener
319 QueuedInputListener::~QueuedInputListener() { in ~QueuedInputListener()
326 void QueuedInputListener::notifyConfigurationChanged( in notifyConfigurationChanged()
332 void QueuedInputListener::notifyKey(const NotifyKeyArgs* args) { in notifyKey()
337 void QueuedInputListener::notifyMotion(const NotifyMotionArgs* args) { in notifyMotion()
342 void QueuedInputListener::notifySwitch(const NotifySwitchArgs* args) { in notifySwitch()
347 void QueuedInputListener::notifySensor(const NotifySensorArgs* args) { in notifySensor()
352 void QueuedInputListener::notifyVibratorState(const NotifyVibratorStateArgs* args) { in notifyVibratorState()
357 void QueuedInputListener::notifyDeviceReset(const NotifyDeviceResetArgs* args) { in notifyDeviceReset()
362 void QueuedInputListener::notifyPointerCaptureChanged(const NotifyPointerCaptureChangedArgs* args) { in notifyPointerCaptureChanged()
[all …]
/aosp12/frameworks/native/services/inputflinger/include/
H A DInputListener.h272 class QueuedInputListener : public InputListenerInterface {
274 virtual ~QueuedInputListener();
277 explicit QueuedInputListener(const sp<InputListenerInterface>& innerListener);
/aosp12/frameworks/native/services/inputflinger/reader/include/
H A DInputReader.h167 sp<QueuedInputListener> mQueuedListener;
/aosp12/frameworks/native/services/inputflinger/reader/
H A DInputReader.cpp56 mQueuedListener = new QueuedInputListener(listener); in InputReader()