Searched refs:pQ (Results 1 – 1 of 1) sorted by relevance
148 #define INIT_HTC_PACKET_QUEUE(pQ) \ argument150 DL_LIST_INIT(&(pQ)->QueueHead); \151 (pQ)->Depth = 0; \155 #define HTC_PACKET_ENQUEUE(pQ,p) \ argument156 { DL_ListInsertTail(&(pQ)->QueueHead,&(p)->ListLink); \157 (pQ)->Depth++; \161 #define HTC_PACKET_ENQUEUE_TO_HEAD(pQ,p) \ argument162 { DL_ListInsertHead(&(pQ)->QueueHead,&(p)->ListLink); \163 (pQ)->Depth++; \166 #define HTC_QUEUE_EMPTY(pQ) ((pQ)->Depth == 0) argument[all …]