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

123

/vbox/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/
H A DUIGChooserModel.h143 static QString uniqueGroupName(UIGChooserItem *pRoot);
H A DUIGChooserModel.cpp512 QString UIGChooserModel::uniqueGroupName(UIGChooserItem *pRoot) argument
516 foreach (UIGChooserItem *pItem, pRoot->items(UIGChooserItemType_Group))
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsSF.cpp489 SFTreeViewItem *pRoot = root(isPermanent ? MachineType : ConsoleType); local
497 if (item->parent() != pRoot)
501 pRoot->insertChild (pRoot->childCount(), item);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Ddmxparse.h239 DMXConfigPartDimPtr pRoot);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Ddmxparse.h239 DMXConfigPartDimPtr pRoot);
/vbox/src/VBox/VMM/VMMR3/
H A DVM.cpp778 PCFGMNODE pRoot = CFGMR3GetRoot(pVM); local
786 CFGMR3RemoveValue(pRoot, "RawR3Enabled");
787 CFGMR3InsertInteger(pRoot, "RawR3Enabled", 0);
788 CFGMR3RemoveValue(pRoot, "RawR0Enabled");
789 CFGMR3InsertInteger(pRoot, "RawR0Enabled", 0);
798 rc = CFGMR3QueryBoolDef(pRoot, "RawR3Enabled", &fEnabled, false); AssertRCReturn(rc, rc);
800 rc = CFGMR3QueryBoolDef(pRoot, "RawR0Enabled", &fEnabled, false); AssertRCReturn(rc, rc);
803 rc = CFGMR3QueryBoolDef(pRoot, "RawR1Enabled", &pVM->fRawRing1Enabled, false);
805 rc = CFGMR3QueryBoolDef(pRoot, "PATMEnabled", &pVM->fPATMEnabled, true); AssertRCReturn(rc, rc);
806 rc = CFGMR3QueryBoolDef(pRoot, "CSAMEnable
[all...]
H A DPGMPhys.cpp680 PPGMRAMRANGE pRoot = pgmR3PhysRebuildRamRangeSearchTreesRecursively(&pRam, 0); local
683 PPGMRAMRANGE pLeft = pRoot;
685 pRoot = pRam;
687 MAKE_LEAF(pRoot);
688 INSERT_LEFT(pRoot, pLeft);
692 INSERT_RIGHT(pRoot, pRight);
698 pVM->pgm.s.pRamRangeTreeR3 = pRoot;
699 pVM->pgm.s.pRamRangeTreeR0 = pRoot ? pRoot->pSelfR0 : NIL_RTR0PTR;
700 pVM->pgm.s.pRamRangeTreeRC = pRoot
[all...]
/vbox/src/VBox/Storage/
H A DVCICache.cpp361 PVCITREENODE pRoot; member in struct:VCICACHE
1071 PVCITREENODE pNodeCur = pCache->pRoot;
1266 pCache->pRoot = vciTreeNodeImage2Host(pCache->offTreeRoot, &RootNode);
1267 if (!pCache->pRoot)
1369 pCache->pRoot = (PVCITREENODE)RTMemAllocZ(sizeof(VCITREENODELEAF));
1370 if (!pCache->pRoot)
1376 pCache->pRoot->u8Type = VCI_TREE_NODE_TYPE_LEAF;
/vbox/include/iprt/
H A Dasn1.h1442 * @param pRoot The root of the ASN.1 object tree to encode.
1449 RTDECL(int) RTAsn1EncodePrepare(PRTASN1CORE pRoot, uint32_t fFlags, uint32_t *pcbEncoded, PRTERRINFO pErrInfo);
1476 * @param pRoot The root of the ASN.1 object tree to encode.
1484 RTDECL(int) RTAsn1EncodeWrite(PCRTASN1CORE pRoot, uint32_t fFlags, FNRTASN1ENCODEWRITER pfnWriter, void *pvUser,
/vbox/src/VBox/Main/include/
H A DConsoleImpl.h622 int i_configCfgmOverlay(PCFGMNODE pRoot, IVirtualBox *pVirtualBox, IMachine *pMachine);
/vbox/src/bldprogs/
H A DVBoxCPP.cpp325 PVBCPPEXPR pRoot; member in struct:VBCPPEXPRPARSER
3595 pParser->pRoot = pExpr;
3916 Parser.pRoot = NULL;
3918 Parser.ppCur = &Parser.pRoot;
3956 vbcppExprDestoryTree(Parser.pRoot);
3962 *ppExprTree = Parser.pRoot;
3988 * @param pRoot The root of the parse (sub-)tree.
3991 static RTEXITCODE vbcppExprEvaluteTree(PVBCPP pThis, PVBCPPEXPR pRoot, PVBCPPEXPR pResult) argument
3994 switch (pRoot->enmKind)
3998 pResult->u.SignedValue.s64 = pRoot
[all...]

Completed in 425 milliseconds

123