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

/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageInfo.cpp271 SafeIfaceArray<IBandwidthGroup> bwGroups; local
273 CHECK_ERROR_RET(bwCtrl, GetAllBandwidthGroups(ComSafeArrayAsOutParam(bwGroups)), rc);
275 if (bwGroups.size() && details != VMINFO_MACHINEREADABLE)
277 for (size_t i = 0; i < bwGroups.size(); i++)
283 CHECK_ERROR_RET(bwGroups[i], COMGETTER(Name)(strName.asOutParam()), rc);
284 CHECK_ERROR_RET(bwGroups[i], COMGETTER(Type)(&enmType), rc);
285 CHECK_ERROR_RET(bwGroups[i], COMGETTER(MaxBytesPerSec)(&cMaxBytesPerSec), rc);
345 RTPrintf(bwGroups.size() != 0 ? "\n" : "<none>\n\n");
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp1412 com::SafeIfaceArray<IBandwidthGroup> bwGroups; local
1416 hrc = bwCtrl->GetAllBandwidthGroups(ComSafeArrayAsOutParam(bwGroups)); H();
1429 for (size_t i = 0; i < bwGroups.size(); i++)
1435 hrc = bwGroups[i]->COMGETTER(Name)(strName.asOutParam()); H();
1436 hrc = bwGroups[i]->COMGETTER(Type)(&enmType); H();
1437 hrc = bwGroups[i]->COMGETTER(MaxBytesPerSec)(&cMaxBytesPerSec); H();

Completed in 69 milliseconds