Lines Matching defs:pNext

160     pNode->pNext         = NULL;
396 return pCur ? pCur->pNext : NULL;
459 for (PCFGMNODE pChild = pNode->pFirstChild; pChild; pChild = pChild->pNext)
508 return pCur ? pCur->pNext : NULL;
584 for (PCFGMLEAF pLeaf = pNode->pFirstLeaf; pLeaf; pLeaf = pLeaf->pNext)
897 for (PCFGMLEAF pLeaf = pNode->pFirstLeaf; pLeaf; pLeaf = pLeaf->pNext)
915 for (PCFGMNODE pChild = pNode->pFirstChild; pChild; pChild = pChild->pNext)
1236 for ( ; pChild; pChild = pChild->pNext)
1290 pLeaf = pLeaf->pNext;
1328 pNew->pNext = NULL;
1375 for (PCFGMLEAF pLeaf = pSrcCur->pFirstLeaf; pLeaf && RT_SUCCESS(rc); pLeaf = pLeaf->pNext)
1382 for (PCFGMNODE pChild = pSrcCur->pFirstChild; pChild && RT_SUCCESS(rc); pChild = pChild->pNext)
1408 if (!pSrcCur->pNext)
1414 } while (!pSrcCur->pNext && pSrcCur != pRoot);
1422 Assert(pDstCur->pNext && !strcmp(pDstCur->pNext->szName, pSrcCur->pNext->szName));
1423 pSrcCur = pSrcCur->pNext;
1424 pDstCur = pDstCur->pNext;
1467 Assert(!pSubTree->pNext);
1483 for (PCFGMNODE pChild = pNewChild->pFirstChild; pChild; pChild = pChild->pNext)
1519 AssertReturn(!pNewRoot->pNext, VERR_INVALID_PARAMETER);
1536 for (PCFGMNODE pChild = pRoot->pFirstChild; pChild; pChild = pChild->pNext)
1733 PCFGMNODE pNext = pNode->pFirstChild;
1734 if (pNext)
1736 for ( ; pNext; pPrev = pNext, pNext = pNext->pNext)
1738 int iDiff = cfgmR3CompareNames(pszName, cchName, pNext->szName, pNext->cchName);
1767 pPrev->pNext = pNew;
1770 pNew->pNext = pNext;
1771 if (pNext)
1772 pNext->pPrev = pNew;
1875 PCFGMLEAF pNext = pNode->pFirstLeaf;
1876 if (pNext)
1878 for ( ; pNext; pPrev = pNext, pNext = pNext->pNext)
1880 int iDiff = cfgmR3CompareNames(pszName, cchName, pNext->szName, pNext->cchName);
1904 pPrev->pNext = pNew;
1907 pNew->pNext = pNext;
1908 if (pNext)
1909 pNext->pPrev = pNew;
1951 pNode->pPrev->pNext = pNode->pNext;
1955 pNode->pParent->pFirstChild = pNode->pNext;
1960 if (pNode->pNext)
1961 pNode->pNext->pPrev = pNode->pPrev;
1985 pLeaf->pPrev->pNext = pLeaf->pNext;
1987 pNode->pFirstLeaf = pLeaf->pNext;
1988 if (pLeaf->pNext)
1989 pLeaf->pNext->pPrev = pLeaf->pPrev;
1995 pLeaf->pNext = NULL;
3252 Assert(pChild->pNext != pChild);
3254 Assert(pChild->pPrev != pChild->pNext || !pChild->pPrev);