Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/
DInputDispatcher.cpp280 if (mInboundQueue.isEmpty()) { in dispatchOnceInnerLocked()
305 mPendingEvent = mInboundQueue.dequeueAtHead(); in dispatchOnceInnerLocked()
404 bool needWake = mInboundQueue.isEmpty(); in enqueueInboundEventLocked()
405 mInboundQueue.enqueueAtTail(entry); in enqueueInboundEventLocked()
609 while (! mInboundQueue.isEmpty()) { in drainInboundQueueLocked()
610 EventEntry* entry = mInboundQueue.dequeueAtHead(); in drainInboundQueueLocked()
3202 if (!mInboundQueue.isEmpty()) { in dumpDispatchStateLocked()
3203 dump.appendFormat(INDENT "InboundQueue: length=%u\n", mInboundQueue.count()); in dumpDispatchStateLocked()
3204 for (EventEntry* entry = mInboundQueue.head; entry; entry = entry->next) { in dumpDispatchStateLocked()
3751 ATRACE_INT("iq", mInboundQueue.count()); in traceInboundQueueLengthLocked()
DInputDispatcher.h848 Queue<EventEntry> mInboundQueue; variable