Searched refs:pRoot (Results 1 - 25 of 61) sorted by relevance

123

/vbox/src/VBox/VMM/testcase/
H A DtstCFGM.cpp39 static void doGeneralTests(PCFGMNODE pRoot) argument
43 RTTESTI_CHECK_RC_RETV(CFGMR3InsertNode(pRoot, "First/Second/Third//Final", &pChild), VINF_SUCCESS);
45 RTTESTI_CHECK(CFGMR3GetChild(pRoot, "First/Second/Third/Final") == pChild);
55 RTTESTI_CHECK_RC(CFGMR3QueryBool(pRoot, "BoolValue", &f), VERR_CFGM_VALUE_NOT_FOUND);
72 static void doTestsOnDefaultValues(PCFGMNODE pRoot) argument
76 RTTESTI_CHECK_RC(CFGMR3QueryU64(pRoot, "RamSize", &u64), VINF_SUCCESS);
79 RTTESTI_CHECK_RC(CFGMR3QuerySize(pRoot, "RamSize", &cb), VINF_SUCCESS);
84 RTTESTI_CHECK_RC(CFGMR3QueryStringAlloc(pRoot, "Name", &pszName), VINF_SUCCESS);
85 RTTESTI_CHECK_RC(CFGMR3QuerySize(pRoot, "Name", &cb), VINF_SUCCESS);
132 PCFGMNODE pRoot;; local
[all...]
H A DtstVMM-HM.cpp49 PCFGMNODE pRoot = CFGMR3GetRoot(pVM); local
50 int rc = CFGMR3InsertInteger(pRoot, "RamSize", 32*1024*1024);
53 /* rc = CFGMR3InsertInteger(pRoot, "EnableNestedPaging", false);
57 rc = CFGMR3InsertNode(pRoot, "HWVirtExt", &pHWVirtExt);
H A DtstVMM.cpp160 PCFGMNODE pRoot = CFGMR3GetRoot(pVM); local
163 rc = CFGMR3InsertInteger(pRoot, "HMEnabled", false);
165 ("CFGMR3InsertInteger(pRoot,\"HMEnabled\",) -> %Rrc\n", rc), rc);
169 CFGMR3RemoveValue(pRoot, "NumCPUs");
170 rc = CFGMR3InsertInteger(pRoot, "NumCPUs", g_cCpus);
172 ("CFGMR3InsertInteger(pRoot,\"NumCPUs\",) -> %Rrc\n", rc), rc);
174 CFGMR3RemoveValue(pRoot, "HwVirtExtForced");
175 rc = CFGMR3InsertInteger(pRoot, "HwVirtExtForced", true);
177 ("CFGMR3InsertInteger(pRoot,\"HwVirtExtForced\",) -> %Rrc\n", rc), rc);
178 PCFGMNODE pHwVirtExt = CFGMR3GetChild(pRoot, "HWVirtEx
[all...]
H A DtstAnimate.cpp342 PCFGMNODE pRoot = CFGMR3GetRoot(pVM); local
343 rc = CFGMR3InsertString(pRoot, "Name", "Default VM");
345 rc = CFGMR3InsertInteger(pRoot, "RamSize", cbMem);
347 rc = CFGMR3InsertInteger(pRoot, "TimerMillies", 10);
349 rc = CFGMR3InsertInteger(pRoot, "RawR3Enabled", 0);
352 rc = CFGMR3InsertInteger(pRoot, "RawR0Enabled", 0);
354 rc = CFGMR3InsertInteger(pRoot, "PATMEnabled", 0);
356 rc = CFGMR3InsertInteger(pRoot, "CSAMEnabled", 0);
363 rc = CFGMR3InsertNode(pRoot, "PDM", &pPdm);
381 rc = CFGMR3InsertNode(pRoot, "Device
[all...]
H A DtstVMREQ.cpp219 PCFGMNODE pRoot = CFGMR3GetRoot(pVM); local
220 rc = CFGMR3InsertInteger(pRoot, "HMEnabled", false);
222 RTPrintf("CFGMR3InsertInteger(pRoot,\"HMEnabled\",) -> %Rrc\n", rc);
/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp78 static void cfgmR3Dump(PCFGMNODE pRoot, unsigned iLevel, PCDBGFINFOHLP pHlp);
192 pVM->cfgm.s.pRoot = NULL;
204 PCFGMNODE pRoot = (PCFGMNODE)MMR3HeapAllocZ(pVM, MM_TAG_CFGM, sizeof(*pRoot)); local
205 if (!pRoot)
207 pRoot->pVM = pVM;
208 pRoot->cchName = 0;
209 pVM->cfgm.s.pRoot = pRoot;
239 CFGMR3RemoveNode(pVM->cfgm.s.pRoot);
952 PCFGMNODE pRoot = CFGMR3GetRoot(pVM); local
1349 CFGMR3DuplicateSubTree(PCFGMNODE pRoot, PCFGMNODE *ppCopy) argument
1509 CFGMR3ReplaceSubTree(PCFGMNODE pRoot, PCFGMNODE pNewRoot) argument
2042 CFGMR3DestroyTree(PCFGMNODE pRoot) argument
3136 CFGMR3Dump(PCFGMNODE pRoot) argument
3158 PCFGMNODE pRoot = pVM->cfgm.s.pRoot; local
3193 cfgmR3Dump(PCFGMNODE pRoot, unsigned iLevel, PCDBGFINFOHLP pHlp) argument
[all...]
H A DSTAM.cpp143 static void stamR3LookupDestroyTree(PSTAMLOOKUP pRoot);
295 PSTAMLOOKUP pRoot = (PSTAMLOOKUP)RTMemAlloc(sizeof(STAMLOOKUP)); local
296 if (!pRoot)
302 pRoot->pParent = NULL;
303 pRoot->papChildren = NULL;
304 pRoot->pDesc = NULL;
305 pRoot->cDescsInTree = 0;
306 pRoot->cChildren = 0;
307 pRoot->iParent = UINT16_MAX;
308 pRoot
[all...]
H A DPGMHandler.cpp375 AVLROGCPTRTREE *pRoot = enmType != PGMVIRTHANDLERTYPE_HYPERVISOR local
379 if (*pRoot != 0)
381 PPGMVIRTHANDLER pCur = (PPGMVIRTHANDLER)RTAvlroGCPtrGetBestFit(pRoot, pNew->Core.Key, true);
385 pCur = (PPGMVIRTHANDLER)RTAvlroGCPtrGetBestFit(pRoot, pNew->Core.Key, false);
401 if (RTAvlroGCPtrInsert(pRoot, &pNew->Core))
/vbox/src/VBox/VMM/include/
H A DCFGMInternal.h126 R3PTRTYPE(PCFGMNODE) pRoot; member in struct:CFGM
H A DSTAMInternal.h139 PSTAMLOOKUP pRoot; member in struct:STAMUSERPERVM
/vbox/src/VBox/Runtime/common/table/
H A Davl_RemoveNode.cpp.h135 KAVLNODE *pRemovedNode = KAVL_FN(Remove)(pRoot, pNode->Key);
139 KAVL_FN(Insert)(pRoot, pRemovedNode);
/vbox/src/VBox/HostServices/SharedFolders/
H A Dmappings.h55 bool fCaseSensitive, SHFLROOT *pRoot);
H A Dmappings.cpp115 static MAPPING *vbsfMappingGetByName (PRTUTF16 pwszName, SHFLROOT *pRoot) argument
129 if (pRoot)
131 *pRoot = root;
537 RTUTF16 wcDelimiter, bool fCaseSensitive, SHFLROOT *pRoot)
573 pFolderMapping = vbsfMappingGetByName(utf16Name, pRoot);
578 pFolderMapping = vbsfMappingGetByName(pszMapName->String.ucs2, pRoot);
536 vbsfMapFolder(PSHFLCLIENTDATA pClient, PSHFLSTRING pszMapName, RTUTF16 wcDelimiter, bool fCaseSensitive, SHFLROOT *pRoot) argument
/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-encode.cpp217 RTDECL(int) RTAsn1EncodePrepare(PRTASN1CORE pRoot, uint32_t fFlags, uint32_t *pcbEncoded, PRTERRINFO pErrInfo) argument
228 int rc = rtAsn1EncodePrepareCallback(pRoot, "root", 0, &Args);
230 *pcbEncoded = RTASN1CORE_GET_RAW_ASN1_SIZE(pRoot);
411 RTDECL(int) RTAsn1EncodeWrite(PCRTASN1CORE pRoot, uint32_t fFlags, FNRTASN1ENCODEWRITER pfnWriter, void *pvUser,
424 return rtAsn1EncodeWriteCallback((PRTASN1CORE)pRoot, "root", 0, &Args);
/vbox/include/VBox/vmm/
H A Dcfgm.h89 VMMR3DECL(int) CFGMR3DestroyTree(PCFGMNODE pRoot); variable
90 VMMR3DECL(void) CFGMR3Dump(PCFGMNODE pRoot); variable
91 VMMR3DECL(int) CFGMR3DuplicateSubTree(PCFGMNODE pRoot, PCFGMNODE *ppCopy);
92 VMMR3DECL(int) CFGMR3ReplaceSubTree(PCFGMNODE pRoot, PCFGMNODE pNewRoot);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Ddmxwindow.h88 extern void dmxResizeRootWindow(WindowPtr pRoot, int x, int y, int w, int h);
/vbox/src/VBox/Debugger/
H A DVBoxDbgStatsQt4.cpp832 PDBGGUISTATSNODE pRoot = (PDBGGUISTATSNODE)RTMemAllocZ(sizeof(DBGGUISTATSNODE));
833 if (!pRoot)
835 pRoot->iSelf = 0;
836 pRoot->enmType = STAMTYPE_INVALID;
837 pRoot->enmUnit = STAMUNIT_INVALID;
838 pRoot->pszName = (char *)RTMemDup("/", sizeof("/"));
839 pRoot->cchName = 1;
840 pRoot->enmState = kDbgGuiStatsNodeState_kRoot;
842 return pRoot;
2527 PDBGGUISTATSNODE pRoot
[all...]
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp680 PCFGMNODE pRoot = CFGMR3GetParent(pDevices); Assert(pRoot); local
683 CFGMR3InsertNode(pRoot, "PGM", NULL);
684 InsertConfigInteger(CFGMR3GetChild(pRoot, "PGM"), "PciPassThrough", 1);
691 CFGMR3RemoveValue(pRoot, "RamPreAlloc");
692 InsertConfigInteger(pRoot, "RamPreAlloc", 1);
1063 PCFGMNODE pRoot = CFGMR3GetRootU(pUVM); local
1064 Assert(pRoot);
1074 InsertConfigString(pRoot, "Name", bstr);
1075 InsertConfigBytes(pRoot, "UUI
3310 i_configCfgmOverlay(PCFGMNODE pRoot, IVirtualBox *pVirtualBox, IMachine *pMachine) argument
[all...]
/vbox/src/VBox/Runtime/common/crypto/
H A Dx509-certpaths.cpp213 PRTCRX509CERTPATHNODE pRoot; member in struct:RTCRX509CERTPATHSINT
399 AssertReturn(pThis->pRoot == NULL, VERR_WRONG_ORDER);
420 AssertReturn(pThis->pRoot == NULL, VERR_WRONG_ORDER);
464 AssertReturn(pThis->pRoot == NULL, VERR_WRONG_ORDER);
483 AssertReturn(pThis->pRoot == NULL, VERR_WRONG_ORDER);
803 pThis->pRoot = NULL;
813 Assert(!pThis->pRoot);
868 AssertReturn(pThis->pRoot == NULL, VERR_INVALID_PARAMETER);
877 pThis->pRoot = pCur = rtCrX509CertPathsNewNode(pThis);
878 if (pThis->pRoot)
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Ddmxwindow.h89 extern void dmxResizeRootWindow(WindowPtr pRoot, int x, int y, int w, int h);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Ddmxwindow.h100 extern void dmxResizeRootWindow(WindowPtr pRoot,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Ddmxwindow.h99 extern void dmxResizeRootWindow(WindowPtr pRoot,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Ddmxwindow.h95 extern void dmxResizeRootWindow(WindowPtr pRoot,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Ddmxwindow.h93 extern void dmxResizeRootWindow(WindowPtr pRoot,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Ddmxwindow.h93 extern void dmxResizeRootWindow(WindowPtr pRoot,

Completed in 111 milliseconds

123