Home
last modified time | relevance | path

Searched refs:pQueue (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Dclosure.c389 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
[all …]