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

/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp1446 * effectually means that the passed in pSubTree handle becomes invalid
1448 * of pSubTree.
1454 * @param pSubTree The subtree to insert. Must be returned by CFGMR3CreateTree().
1457 VMMR3DECL(int) CFGMR3InsertSubTree(PCFGMNODE pNode, const char *pszName, PCFGMNODE pSubTree, PCFGMNODE *ppChild) argument
1463 AssertPtrReturn(pSubTree, VERR_INVALID_POINTER);
1464 AssertReturn(pNode != pSubTree, VERR_INVALID_PARAMETER);
1465 AssertReturn(!pSubTree->pParent, VERR_INVALID_PARAMETER);
1466 AssertReturn(pNode->pVM == pSubTree->pVM, VERR_INVALID_PARAMETER);
1467 Assert(!pSubTree->pNext);
1468 Assert(!pSubTree
[all...]

Completed in 51 milliseconds