Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/
DInputListener.cpp147 size_t count = mArgsQueue.size(); in ~QueuedInputListener()
149 delete mArgsQueue[i]; in ~QueuedInputListener()
155 mArgsQueue.push(new NotifyConfigurationChangedArgs(*args)); in notifyConfigurationChanged()
159 mArgsQueue.push(new NotifyKeyArgs(*args)); in notifyKey()
163 mArgsQueue.push(new NotifyMotionArgs(*args)); in notifyMotion()
167 mArgsQueue.push(new NotifySwitchArgs(*args)); in notifySwitch()
171 mArgsQueue.push(new NotifyDeviceResetArgs(*args)); in notifyDeviceReset()
175 size_t count = mArgsQueue.size(); in flush()
177 NotifyArgs* args = mArgsQueue[i]; in flush()
181 mArgsQueue.clear(); in flush()
DInputListener.h200 Vector<NotifyArgs*> mArgsQueue; variable