Home | History | Annotate | Download | only in input

Lines Matching defs:Queue

604     // Generic queue implementation.
606 struct Queue {
610 inline Queue() : head(NULL), tail(NULL) {
811 // Queue of events that need to be published to the connection.
812 Queue<DispatchEntry> outboundQueue;
814 // Queue of events that have been published to the connection but that have not
816 Queue<DispatchEntry> waitQueue;
848 Queue<EventEntry> mInboundQueue;
849 Queue<CommandEntry> mCommandQueue;
1043 void drainDispatchQueueLocked(Queue<DispatchEntry>* queue);