Lines Matching defs:machines
3 * VBoxAutostart - VirtualBox Autostart service, stop machines during system shutdown.
117 com::SafeIfaceArray<IMachine> machines;
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. */