Lines Matching refs:vbox
83 static void testEnumeration(VirtualBoxManager mgr, IVirtualBox vbox)
85 List<IMachine> machs = vbox.getMachines();
101 IGuestOSType foo = vbox.getGuestOSType(osType);
132 static void testStart(VirtualBoxManager mgr, IVirtualBox vbox)
134 IMachine m = vbox.getMachines().get(0);
171 static void testReadLog(VirtualBoxManager mgr, IVirtualBox vbox)
173 IMachine m = vbox.getMachines().get(0);
238 IVirtualBox vbox = mgr.getVBox();
239 if (vbox != null)
241 System.out.println("VirtualBox version: " + vbox.getVersion() + "\n");
242 testEnumeration(mgr, vbox);
243 testReadLog(mgr, vbox);
244 testStart(mgr, vbox);
245 testEvents(mgr, vbox.getEventSource());