Home | History | Annotate | Download | only in utils

Lines Matching full:pdata

81 int listAdd(struct listHead* pList, void* pData)
95 pNode->pData = pData;
135 int listRemove(struct listHead* pList, void* pData)
152 if (pList->pFirst->pData == pData)
164 if (pNode->pNext->pData == pData)
176 NXPLOG_NCIHAL_E("Failed to deallocate (not found %8p)", pData);
227 *ppData = pNode->pData;
258 NXPLOG_NCIHAL_D("- %8p (%8p)", pNode, pNode->pData);