Home
last modified time | relevance | path

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

/frameworks/base/services/input/
DInputDispatcher.cpp265 if (mInboundQueue.isEmpty()) { in dispatchOnceInnerLocked()
290 mPendingEvent = mInboundQueue.dequeueAtHead(); in dispatchOnceInnerLocked()
389 bool needWake = mInboundQueue.isEmpty(); in enqueueInboundEventLocked()
390 mInboundQueue.enqueueAtTail(entry); in enqueueInboundEventLocked()
581 while (! mInboundQueue.isEmpty()) { in drainInboundQueueLocked()
582 EventEntry* entry = mInboundQueue.dequeueAtHead(); in drainInboundQueueLocked()
3099 if (!mInboundQueue.isEmpty()) { in dumpDispatchStateLocked()
3100 dump.appendFormat(INDENT "InboundQueue: length=%u\n", mInboundQueue.count()); in dumpDispatchStateLocked()
3101 for (EventEntry* entry = mInboundQueue.head; entry; entry = entry->next) { in dumpDispatchStateLocked()
3635 ATRACE_INT("iq", mInboundQueue.count()); in traceInboundQueueLengthLocked()
DInputDispatcher.h843 Queue<EventEntry> mInboundQueue; variable