Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/
DInputListener.cpp224 size_t count = mArgsQueue.size(); in ~QueuedInputListener()
226 delete mArgsQueue[i]; in ~QueuedInputListener()
232 mArgsQueue.push_back(new NotifyConfigurationChangedArgs(*args)); in notifyConfigurationChanged()
236 mArgsQueue.push_back(new NotifyKeyArgs(*args)); in notifyKey()
240 mArgsQueue.push_back(new NotifyMotionArgs(*args)); in notifyMotion()
244 mArgsQueue.push_back(new NotifySwitchArgs(*args)); in notifySwitch()
248 mArgsQueue.push_back(new NotifyDeviceResetArgs(*args)); in notifyDeviceReset()
252 size_t count = mArgsQueue.size(); in flush()
254 NotifyArgs* args = mArgsQueue[i]; in flush()
258 mArgsQueue.clear(); in flush()
/frameworks/native/services/inputflinger/include/
DInputListener.h224 std::vector<NotifyArgs*> mArgsQueue; variable