Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/
DInputListener.cpp144 size_t count = mArgsQueue.size(); in ~QueuedInputListener()
146 delete mArgsQueue[i]; in ~QueuedInputListener()
152 mArgsQueue.push(new NotifyConfigurationChangedArgs(*args)); in notifyConfigurationChanged()
156 mArgsQueue.push(new NotifyKeyArgs(*args)); in notifyKey()
160 mArgsQueue.push(new NotifyMotionArgs(*args)); in notifyMotion()
164 mArgsQueue.push(new NotifySwitchArgs(*args)); in notifySwitch()
168 mArgsQueue.push(new NotifyDeviceResetArgs(*args)); in notifyDeviceReset()
172 size_t count = mArgsQueue.size(); in flush()
174 NotifyArgs* args = mArgsQueue[i]; in flush()
178 mArgsQueue.clear(); in flush()
DInputListener.h193 Vector<NotifyArgs*> mArgsQueue; variable