Lines Matching defs:ctl
3740 ComObjPtr<StorageController> ctl;
3741 rc = i_getStorageControllerByName(aName, ctl, true /* aSetError */);
3745 rc = ctl->COMGETTER(ControllerType)(&ctrlType);
3771 rc = ctl->i_checkPortAndDeviceValid(aControllerPort, aDevice);
4302 ComObjPtr<StorageController> ctl;
4303 rc = i_getStorageControllerByName(aName, ctl, true /* aSetError */);
4307 rc = ctl->COMGETTER(ControllerType)(&ctrlType);
4563 ComObjPtr<StorageController> ctl;
4564 rc = i_getStorageControllerByName(aName, ctl, true /* aSetError */);
4568 rc = ctl->COMGETTER(ControllerType)(&ctrlType);
10397 settings::StorageController ctl;
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();
10408 ctl.ulPortCount = portCount;
10414 ctl.fUseHostIOCache = !!fUseHostIOCache;
10417 if (ctl.controllerType == StorageControllerType_IntelAhci)
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);
10431 data.llStorageControllers.push_back(ctl);
12362 ComObjPtr<StorageController> ctl;
12363 ctl.createObject();
12364 ctl->init(this, *it);
12365 mStorageControllers->push_back(ctl);
12373 ComObjPtr<USBController> ctl;
12374 ctl.createObject();
12375 ctl->init(this, *it);
12376 mUSBControllers->push_back(ctl);