Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/
DInputDispatcher.cpp323 if (mInboundQueue.isEmpty()) { in dispatchOnceInnerLocked()
348 mPendingEvent = mInboundQueue.dequeueAtHead(); in dispatchOnceInnerLocked()
448 bool needWake = mInboundQueue.isEmpty(); in enqueueInboundEventLocked()
449 mInboundQueue.enqueueAtTail(entry); in enqueueInboundEventLocked()
655 while (! mInboundQueue.isEmpty()) { in drainInboundQueueLocked()
656 EventEntry* entry = mInboundQueue.dequeueAtHead(); in drainInboundQueueLocked()
3315 if (!mInboundQueue.isEmpty()) { in dumpDispatchStateLocked()
3316 dump += StringPrintf(INDENT "InboundQueue: length=%u\n", mInboundQueue.count()); in dumpDispatchStateLocked()
3317 for (EventEntry* entry = mInboundQueue.head; entry; entry = entry->next) { in dumpDispatchStateLocked()
3870 ATRACE_INT("iq", mInboundQueue.count()); in traceInboundQueueLengthLocked()
DInputDispatcher.h861 Queue<EventEntry> mInboundQueue; variable