Home
last modified time | relevance | path

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

/wlan-driver/qca-wifi-host-cmn/htc/
Dhtc_packet.h210 #define INIT_HTC_PACKET_QUEUE(pQ) \ argument
212 DL_LIST_INIT(&(pQ)->QueueHead); \
213 (pQ)->Depth = 0; \
217 #define HTC_PACKET_ENQUEUE(pQ, p) \ argument
218 { dl_list_insert_tail(&(pQ)->QueueHead, &(p)->ListLink); \
219 (pQ)->Depth++; \
223 #define HTC_PACKET_ENQUEUE_TO_HEAD(pQ, p) \ argument
224 { dl_list_insert_head(&(pQ)->QueueHead, &(p)->ListLink); \
225 (pQ)->Depth++; \
228 #define HTC_QUEUE_EMPTY(pQ) ((pQ)->Depth == 0) argument
[all …]