Home | History | Annotate | Download | only in src

Lines Matching refs:pSourceRefList

844 SML_API void smlFreeSourceRefList(SmlSourceRefListPtr_t pSourceRefList)
848 while (pSourceRefList) {
849 pTmp = pSourceRefList->next;
850 smlFreePcdata(pSourceRefList->sourceRef);
851 smlLibFree(pSourceRefList);
852 pSourceRefList = pTmp;