Lines Matching refs:pNode

362 static void InsertConfigString(PCFGMNODE pNode,
366 int vrc = CFGMR3InsertString(pNode,
380 static void InsertConfigString(PCFGMNODE pNode,
384 int vrc = CFGMR3InsertStringN(pNode,
400 static void InsertConfigString(PCFGMNODE pNode,
404 InsertConfigString(pNode, pcszName, Utf8Str(rBstrValue));
410 * @param pNode See CFGMR3InsertBytes.
415 static void InsertConfigBytes(PCFGMNODE pNode,
420 int vrc = CFGMR3InsertBytes(pNode,
432 * @param pNode See CFGMR3InsertInteger.
436 static void InsertConfigInteger(PCFGMNODE pNode,
440 int vrc = CFGMR3InsertInteger(pNode,
450 * @param pNode See CFGMR3InsertNode.
454 static void InsertConfigNode(PCFGMNODE pNode,
458 int vrc = CFGMR3InsertNode(pNode, pcszName, ppChild);
466 * @param pNode See CFGMR3RemoveValue.
469 static void RemoveConfigValue(PCFGMNODE pNode,
472 int vrc = CFGMR3RemoveValue(pNode, pcszName);
1377 PCFGMNODE pNode;
1380 InsertConfigNode(pPDM, "Devices", &pNode);
1381 InsertConfigNode(pPDM, "Drivers", &pNode);
1382 InsertConfigNode(pNode, "VBoxC", &pMod);
3384 PCFGMNODE pNode;
3394 pNode = CFGMR3GetChild(pRoot, pszExtraDataKey);
3395 if (pNode)
3396 CFGMR3RemoveValue(pNode, pszCFGMValueName);
3400 rc = CFGMR3InsertNode(pRoot, pszExtraDataKey, &pNode);
3406 Assert(pNode);
3412 pNode = pRoot;
3415 CFGMR3RemoveValue(pNode, pszCFGMValueName);
3430 InsertConfigString(pNode, pszCFGMValueName, strCFGMValueUtf8.c_str() + sizeof("string:") - 1);
3435 rc = CFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
3448 rc = CFGMR3InsertBytes(pNode, pszCFGMValueName, pvBytes, cbValue);
3455 rc = CFGMR3InsertBytes(pNode, pszCFGMValueName, NULL, 0);
3461 rc = CFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
3463 InsertConfigString(pNode, pszCFGMValueName, strCFGMValueUtf8);