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

/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp1552 * @param pDstTree The destination tree.
1556 VMMR3DECL(int) CFGMR3CopyTree(PCFGMNODE pDstTree, PCFGMNODE pSrcTree, uint32_t fFlags) argument
1562 AssertPtrReturn(pDstTree, VERR_INVALID_POINTER);
1563 AssertReturn(pDstTree != pSrcTree, VERR_INVALID_PARAMETER);
1577 rc = CFGMR3InsertValue(pDstTree, pValue);
1582 rc = CFGMR3RemoveValue(pDstTree, pValue->szName);
1585 rc = CFGMR3InsertValue(pDstTree, pValue);
1598 PCFGMNODE pDstChild = CFGMR3GetChild(pDstTree, pSrcChild->szName);
1610 rc = CFGMR3InsertSubTree(pDstTree, pSrcChild->szName, pChildCopy, NULL);

Completed in 52 milliseconds