Lines Matching refs:queueHead
202 size_t queueHead; member
340 if (heapSource->queueHead != QUEUE_TAIL) { in allocateBlocks()
426 if (heapSource->queueHead != QUEUE_TAIL) { in enqueueBlock()
429 heapSource->queueHead = block; in enqueueBlock()
488 heapSource->queueHead = QUEUE_TAIL; in dvmHeapSourceStartup()
674 if (heapSource->queueHead == QUEUE_TAIL) { in allocateGray()
809 heapSource->queueHead = QUEUE_TAIL; in dvmHeapSourceFlip()
2051 block = heapSource->queueHead; in describeBlockQueue()
2061 block = heapSource->queueHead; in describeBlockQueue()
2082 while (heapSource->queueHead != QUEUE_TAIL) { in scavengeBlockQueue()
2083 block = heapSource->queueHead; in scavengeBlockQueue()
2086 heapSource->queueHead = heapSource->blockQueue[block]; in scavengeBlockQueue()
2087 LOG_SCAV("New queue head is %zu\n", heapSource->queueHead); in scavengeBlockQueue()