Lines Matching refs:pQueue
389 static void queuePush(closure_queue *pQueue, closure_avl *pNode){ in queuePush() argument
391 if( pQueue->pLast ){ in queuePush()
392 pQueue->pLast->pList = pNode; in queuePush()
394 pQueue->pFirst = pNode; in queuePush()
396 pQueue->pLast = pNode; in queuePush()
402 static closure_avl *queuePull(closure_queue *pQueue){ in queuePull() argument
403 closure_avl *p = pQueue->pFirst; in queuePull()
405 pQueue->pFirst = p->pList; in queuePull()
406 if( pQueue->pFirst==0 ) pQueue->pLast = 0; in queuePull()
631 closure_queue *pQueue, /* Add new node to this queue */ in closureInsertNode() argument
642 queuePush(pQueue, pNew); in closureInsertNode()