Lines Matching refs:pItems
36 phDal4Nfc_message_queue_item_t* pItems; member
125 if (pQueue->pItems != NULL) { in phDal4Nfc_msgctl()
126 p = pQueue->pItems; in phDal4Nfc_msgctl()
137 pQueue->pItems = NULL; in phDal4Nfc_msgctl()
176 if (pQueue->pItems != NULL) { in phDal4Nfc_msgsnd()
177 p = pQueue->pItems; in phDal4Nfc_msgsnd()
184 pQueue->pItems = pNew; in phDal4Nfc_msgsnd()
225 if (pQueue->pItems != NULL) { in phDal4Nfc_msgrcv()
226 memcpy(msg, &(pQueue->pItems)->nMsg, sizeof(phLibNfc_Message_t)); in phDal4Nfc_msgrcv()
227 p = pQueue->pItems->pNext; in phDal4Nfc_msgrcv()
228 free(pQueue->pItems); in phDal4Nfc_msgrcv()
229 pQueue->pItems = p; in phDal4Nfc_msgrcv()