Home | History | Annotate | Download | only in back

Lines Matching defs:queue

161     CommandQueue *queue = &commandQueue;
179 if (queue->head == NULL) {
180 queue->head = command;
182 queue->tail->next = command;
184 queue->tail = command;
222 CommandQueue *queue = &commandQueue;
228 while (holdEvents || (queue->head == NULL)) {
232 JDI_ASSERT(queue->head);
233 command = queue->head;
234 queue->head = command->next;
235 if (queue->tail == command) {
236 queue->tail = NULL;
253 * There's room in the queue for more.
631 * into the command queue. For the Classic VM, this was a reasonable
725 commandQueueLock = debugMonitorCreate("JDWP Event Helper Queue Monitor");