Lines Matching refs:pCtl

9114         ComObjPtr<StorageController> pCtl;
9116 rc = i_getStorageControllerByName(ctlData.strName, pCtl, false /* aSetError */);
9122 pCtl.createObject();
9123 rc = pCtl->init(this,
9130 mStorageControllers->push_back(pCtl);
9132 rc = pCtl->COMSETTER(ControllerType)(ctlData.controllerType);
9135 rc = pCtl->COMSETTER(PortCount)(ctlData.ulPortCount);
9138 rc = pCtl->COMSETTER(UseHostIOCache)(ctlData.fUseHostIOCache);
9144 if ( (FAILED(rc = pCtl->i_setIDEEmulationPort(0, ctlData.lIDE0MasterEmulationPort)))
9145 || (FAILED(rc = pCtl->i_setIDEEmulationPort(1, ctlData.lIDE0SlaveEmulationPort)))
9146 || (FAILED(rc = pCtl->i_setIDEEmulationPort(2, ctlData.lIDE1MasterEmulationPort)))
9147 || (FAILED(rc = pCtl->i_setIDEEmulationPort(3, ctlData.lIDE1SlaveEmulationPort)))
9153 rc = i_loadStorageDevices(pCtl,
10395 ComObjPtr<StorageController> pCtl = *it;
10398 ctl.strName = pCtl->i_getName();
10399 ctl.controllerType = pCtl->i_getControllerType();
10400 ctl.storageBus = pCtl->i_getStorageBus();
10401 ctl.ulInstance = pCtl->i_getInstance();
10402 ctl.fBootable = pCtl->i_getBootable();
10406 rc = pCtl->COMGETTER(PortCount)(&portCount);
10412 rc = pCtl->COMGETTER(UseHostIOCache)(&fUseHostIOCache);
10419 if ( (FAILED(rc = pCtl->i_getIDEEmulationPort(0, (LONG*)&ctl.lIDE0MasterEmulationPort)))
10420 || (FAILED(rc = pCtl->i_getIDEEmulationPort(1, (LONG*)&ctl.lIDE0SlaveEmulationPort)))
10421 || (FAILED(rc = pCtl->i_getIDEEmulationPort(2, (LONG*)&ctl.lIDE1MasterEmulationPort)))
10422 || (FAILED(rc = pCtl->i_getIDEEmulationPort(3, (LONG*)&ctl.lIDE1SlaveEmulationPort)))
10428 rc = i_saveStorageDevices(pCtl, ctl);