Home | History | Annotate | Download | only in input

Lines Matching refs:Queue

602     // Generic queue implementation.
604 struct Queue {
608 inline Queue() : head(NULL), tail(NULL) {
809 // Queue of events that need to be published to the connection.
810 Queue<DispatchEntry> outboundQueue;
812 // Queue of events that have been published to the connection but that have not
814 Queue<DispatchEntry> waitQueue;
846 Queue<EventEntry> mInboundQueue;
847 Queue<CommandEntry> mCommandQueue;
1041 void drainDispatchQueueLocked(Queue<DispatchEntry>* queue);