Lines Matching defs:pCtlInst

746 void Console::i_attachStatusDriver(PCFGMNODE pCtlInst, PPDMLED *papLeds,
752 InsertConfigNode(pCtlInst, "LUN#999", &pLunL0);
2167 PCFGMNODE pCtlInst = NULL;
2180 InsertConfigNode(pDev, Utf8StrFmt("%u", ulInstance).c_str(), &pCtlInst);
2183 InsertConfigInteger(pCtlInst, "Trusted", 1);
2184 InsertConfigNode(pCtlInst, "Config", &pCfg);
2197 hrc = pBusMgr->assignPCIDevice("lsilogic", pCtlInst); H();
2213 i_attachStatusDriver(pCtlInst, &mapStorageLeds[iLedScsi], 0, 15,
2221 hrc = pBusMgr->assignPCIDevice("buslogic", pCtlInst); H();
2237 i_attachStatusDriver(pCtlInst, &mapStorageLeds[iLedScsi], 0, 15,
2245 hrc = pBusMgr->assignPCIDevice("ahci", pCtlInst); H();
2262 i_attachStatusDriver(pCtlInst, &mapStorageLeds[iLedSata], 0, cPorts - 1,
2275 hrc = pBusMgr->assignPCIDevice("piix3ide", pCtlInst); H();
2279 i_attachStatusDriver(pCtlInst, &mapStorageLeds[iLedIde], 0, 3,
2303 i_attachStatusDriver(pCtlInst, &mapStorageLeds[iLedFloppy], 0, 1,
2311 hrc = pBusMgr->assignPCIDevice("lsilogicsas", pCtlInst); H();
2332 i_attachStatusDriver(pCtlInst, &mapStorageLeds[iLedSas], 0, 7,
2347 pCtlInst = pDev;
3731 PCFGMNODE pCtlInst = NULL;
3753 pCtlInst = CFGMR3GetChildF(CFGMR3GetRootU(pUVM), "Devices/%s/%u/", pcszDevice, uInstance);
3758 pCtlInst = CFGMR3GetChildF(CFGMR3GetRootU(pUVM), "USB/%s/", pcszDevice, uInstance);
3760 pCtlInst = CFGMR3CreateTree(pUVM);
3762 AssertReturn(pCtlInst, VERR_INTERNAL_ERROR);
3770 InsertConfigNode(pCtlInst, Utf8StrFmt("%d", lPort).c_str(), &pCtlInst);
3772 pCtlInst = CFGMR3GetChildF(pCtlInst, "%d/", lPort);
3775 InsertConfigNode(pCtlInst, "Config", &pCfg);
3792 InsertConfigString(pCtlInst, "UUID", aszUuid);
3798 i_attachStatusDriver(pCtlInst, &mapStorageLeds[iLedUsb], 0, 7,
3805 pLunL0 = CFGMR3GetChildF(pCtlInst, "LUN#%u", uLUN);
3854 InsertConfigNode(pCtlInst, Utf8StrFmt("LUN#%u", uLUN).c_str(), &pLunL0);
3858 PCFGMNODE pCfg = CFGMR3GetChild(pCtlInst, "Config");
4145 rc = PDMR3UsbCreateEmulatedDevice(pUVM, pcszDevice, pCtlInst, &UsbMsd.mUuid, NULL);
4185 CFGMR3Dump(pLunL0 ? pLunL0 : pCtlInst);