Searched defs:machines (Results 1 - 12 of 12) sorted by relevance
/vbox/src/VBox/Main/webservice/samples/php/ |
H A D | clienttest.php | 45 //Get a list of registered machines 46 $machines = $virtualbox->machines; variable 49 foreach ($machines as $machine)
|
/vbox/src/VBox/Main/src-server/ |
H A D | HostPower.cpp | 46 SessionMachinesList machines; local 64 mVirtualBox->i_getOpenedMachines(machines, &controls); 137 mVirtualBox->i_getOpenedMachines(machines, &controls); 141 for (SessionMachinesList::const_iterator it = machines.begin(); 142 it != machines.end();
|
H A D | ClientWatcher.cpp | 165 SessionMachineVector machines; local 213 (machines[rc - WAIT_OBJECT_0 - 1])->i_checkForDeath(); 219 (machines[rc - WAIT_ABANDONED_0 - 1])->i_checkForDeath(); 236 // get reference to the machines list in VirtualBox 239 // lock the machines list for reading 242 /* obtain a new set of opened machines */ 244 machines.clear(); 265 machines.push_back(sm); 275 /* obtain a new set of spawned machines */ 308 // machines loc [all...] |
/vbox/src/VBox/Main/testcase/ |
H A D | tstVBoxAPIWin.cpp | 75 IMachine **machines; local 76 rc = SafeArrayAccessData(machinesArray, (void **) &machines); 83 rc = machines[i]->get_Name(&str);
|
H A D | tstVBoxAPI.cpp | 171 com::SafeIfaceArray<IMachine> machines; local 172 RTTestSub(g_hTest, "IVirtualBox::machines"); 173 CHECK_ERROR(pVBox, COMGETTER(Machines)(ComSafeArrayAsOutParam(machines))); 177 for (size_t i = 0; i < machines.size(); ++i) 179 if (machines[i]) 182 rc = machines[i]->COMGETTER(Name)(tmpName.asOutParam()); 195 RTTestPassed(g_hTest, "IVirtualBox::machines"); 197 RTTestFailed(g_hTest, "%d: IVirtualBox::machines failed. No created machine found", __LINE__); 200 RTTestFailed(g_hTest, "%d: IVirtualBox::machines failed", __LINE__);
|
H A D | tstVBoxAPIXPCOM.cpp | 105 IMachine **machines = NULL; local 108 rc = virtualBox->GetMachines(&machineCnt, &machines); 116 IMachine *machine = machines[i];
|
/vbox/src/VBox/Frontends/VBoxAutostart/ |
H A D | VBoxAutostartStop.cpp | 3 * VBoxAutostart - VirtualBox Autostart service, stop machines during system shutdown. 117 com::SafeIfaceArray<IMachine> machines; local 118 HRESULT rc = g_pVirtualBox->COMGETTER(Machines)(ComSafeArrayAsOutParam(machines)); 122 * Iterate through the collection and construct a list of machines 125 for (size_t i = 0; i < machines.size(); ++i) 127 if (machines[i]) 130 CHECK_ERROR_BREAK(machines[i], COMGETTER(Accessible)(&fAccessible)); 135 CHECK_ERROR_BREAK(machines[i], COMGETTER(AutostopType)(&enmAutostopType)); 140 CHECK_ERROR_BREAK(machines[i], COMGETTER(Id)(autostopVM.strId.asOutParam())); 170 /* Only power off running machines [all...] |
/vbox/src/VBox/Frontends/VBoxBalloonCtrl/ |
H A D | VBoxWatchdog.cpp | 75 /** The critical section for the machines map. */ 331 * Adds a specified machine to the list (map) of handled machines. 461 serviceLogVerbose(("Group \"%s\" has %ld machines left\n", 491 * Removes a specified machine from the list of handled machines. 558 com::SafeIfaceArray<IMachine> machines; local 559 HRESULT hrc = g_pVirtualBox->COMGETTER(Machines)(ComSafeArrayAsOutParam(machines)); 565 for (size_t i = 0; i < machines.size(); ++i) 567 if (machines[i]) 570 CHECK_ERROR_BREAK(machines[i], COMGETTER(Id)(strUUID.asOutParam())); 573 CHECK_ERROR_BREAK(machines[ [all...] |
/vbox/src/VBox/Main/cbinding/ |
H A D | tstCAPIGlue.c | 838 IMachine **machines = NULL; local 849 PrintErrorInfo(argv0, "could not get list of machines", rc); 857 g_pVBoxFuncs->pfnSafeArrayCopyOutIfaceParamHelper((IUnknown ***)&machines, &machineCnt, machinesSA); 862 g_pVBoxFuncs->pfnArrayOutFree(machines); 875 IMachine *machine = machines[i]; 965 IMachine *machine = machines[start_id]; 983 IMachine *machine = machines[i]; 990 g_pVBoxFuncs->pfnArrayOutFree(machines);
|
/vbox/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/ |
H A D | UIGChooserModel.cpp | 1480 QList<CMachine> machines; local 1486 machines << machine; 1490 int iResultCode = msgCenter().confirmMachineRemoval(machines); 1495 for (int iMachineIndex = 0; iMachineIndex < machines.size(); ++iMachineIndex) 1498 CMachine &machine = machines[iMachineIndex]; 1667 /* Add all the approved machines we have into the group-tree: */
|
/vbox/src/VBox/Frontends/VBoxManage/ |
H A D | VBoxManageList.cpp | 880 com::SafeIfaceArray<IMachine> machines; local 881 rc = pVirtualBox->COMGETTER(Machines)(ComSafeArrayAsOutParam(machines)); 887 for (size_t i = 0; i < machines.size(); ++i) 889 if (machines[i]) 890 rc = showVMInfo(pVirtualBox, machines[i], NULL, fOptLong ? VMINFO_STANDARD : VMINFO_COMPACT); 901 com::SafeIfaceArray<IMachine> machines; local 902 rc = pVirtualBox->COMGETTER(Machines)(ComSafeArrayAsOutParam(machines)); 905 rc = pVirtualBox->GetMachineStates(ComSafeArrayAsInParam(machines), ComSafeArrayAsOutParam(states)); 911 for (size_t i = 0; i < machines.size(); ++i) 913 if (machines[ [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/extradata/ |
H A D | UIExtraDataManager.cpp | 624 const CMachineVector machines = vboxGlobal().virtualBox().GetMachines(); local 627 foreach (const CMachine &machine, machines) 1369 CMachineVector machines = vboxGlobal().virtualBox().GetMachines(); local 1370 foreach (const CMachine &machine, machines)
|
Completed in 63 milliseconds