Searched defs:devsvec (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Main/src-server/
H A DHostImpl.cpp1595 SafeIfaceArray<IHostUSBDevice> devsvec; local
1596 HRESULT rc = COMGETTER(USBDevices)(ComSafeArrayAsOutParam(devsvec));
1600 for (size_t i = 0; i < devsvec.size(); ++i)
1603 rc = devsvec[i]->COMGETTER(Address)(address.asOutParam());
1608 return (ComPtr<IHostUSBDevice>(devsvec[i]).queryInterfaceTo(aDevice.asOutParam()));
1631 SafeIfaceArray<IHostUSBDevice> devsvec; local
1632 HRESULT rc = COMGETTER(USBDevices)(ComSafeArrayAsOutParam(devsvec));
1636 for (size_t i = 0; i < devsvec.size(); ++i)
1639 rc = devsvec[i]->COMGETTER(Id)(id.asOutParam());
1644 return (ComPtr<IHostUSBDevice>(devsvec[
[all...]
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl.cpp2888 SafeIfaceArray<IUSBDevice> devsvec; local
2889 HRESULT rc = COMGETTER(USBDevices)(ComSafeArrayAsOutParam(devsvec));
2892 for (size_t i = 0; i < devsvec.size(); ++i)
2895 rc = devsvec[i]->COMGETTER(Address)(address.asOutParam());
2901 pUSBDevice->init(devsvec[i]);
2921 SafeIfaceArray<IUSBDevice> devsvec; local
2922 HRESULT rc = COMGETTER(USBDevices)(ComSafeArrayAsOutParam(devsvec));
2925 for (size_t i = 0; i < devsvec.size(); ++i)
2928 rc = devsvec[i]->COMGETTER(Id)(id.asOutParam());
2934 pUSBDevice->init(devsvec[
[all...]

Completed in 94 milliseconds