Lines Matching defs:Queue
610 // Generic queue implementation.
612 struct Queue {
617 inline Queue() : head(NULL), tail(NULL), entryCount(0) {
824 // Queue of events that need to be published to the connection.
825 Queue<DispatchEntry> outboundQueue;
827 // Queue of events that have been published to the connection but that have not
829 Queue<DispatchEntry> waitQueue;
861 Queue<EventEntry> mInboundQueue;
862 Queue<EventEntry> mRecentQueue;
863 Queue<CommandEntry> mCommandQueue;
875 // Adds an event to a queue of recent events for debugging purposes.
1079 void drainDispatchQueueLocked(Queue<DispatchEntry>* queue);