Home
last modified time | relevance | path

Searched refs:mArgsQueue (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/
H A DInputListener.cpp320 size_t count = mArgsQueue.size(); in ~QueuedInputListener()
322 delete mArgsQueue[i]; in ~QueuedInputListener()
334 mArgsQueue.push_back(new NotifyKeyArgs(*args)); in notifyKey()
339 mArgsQueue.push_back(new NotifyMotionArgs(*args)); in notifyMotion()
344 mArgsQueue.push_back(new NotifySwitchArgs(*args)); in notifySwitch()
349 mArgsQueue.push_back(new NotifySensorArgs(*args)); in notifySensor()
354 mArgsQueue.push_back(new NotifyVibratorStateArgs(*args)); in notifyVibratorState()
359 mArgsQueue.push_back(new NotifyDeviceResetArgs(*args)); in notifyDeviceReset()
368 size_t count = mArgsQueue.size(); in flush()
370 NotifyArgs* args = mArgsQueue[i]; in flush()
[all …]
/aosp12/frameworks/native/services/inputflinger/include/
H A DInputListener.h292 std::vector<NotifyArgs*> mArgsQueue; variable