Searched defs:pSrcTree (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp1553 * @param pSrcTree The source tree.
1556 VMMR3DECL(int) CFGMR3CopyTree(PCFGMNODE pDstTree, PCFGMNODE pSrcTree, uint32_t fFlags) argument
1561 AssertPtrReturn(pSrcTree, VERR_INVALID_POINTER);
1563 AssertReturn(pDstTree != pSrcTree, VERR_INVALID_PARAMETER);
1575 for (PCFGMLEAF pValue = CFGMR3GetFirstValue(pSrcTree); pValue; pValue = CFGMR3GetNextValue(pValue))
1596 for (PCFGMNODE pSrcChild = CFGMR3GetFirstChild(pSrcTree); pSrcChild; pSrcChild = CFGMR3GetNextChild(pSrcChild))

Completed in 52 milliseconds