Searched refs:cMaxBytesPerSec (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageBandwidthControl.cpp117 int64_t cMaxBytesPerSec = INT64_MAX; local
143 const char *pcszError = parseLimit(ValueUnion.psz, &cMaxBytesPerSec);
176 CHECK_ERROR2_RET(bwCtrl, CreateBandwidthGroup(name.raw(), enmType, (LONG64)cMaxBytesPerSec), RTEXITCODE_FAILURE);
197 int64_t cMaxBytesPerSec = INT64_MAX; local
214 const char *pcszError = parseLimit(ValueUnion.psz, &cMaxBytesPerSec);
236 if (cMaxBytesPerSec != INT64_MAX)
241 CHECK_ERROR2_RET(bwGroup, COMSETTER(MaxBytesPerSec)((LONG64)cMaxBytesPerSec), RTEXITCODE_FAILURE);
H A DVBoxManageInfo.cpp280 LONG64 cMaxBytesPerSec; local
285 CHECK_ERROR_RET(bwGroups[i], COMGETTER(MaxBytesPerSec)(&cMaxBytesPerSec), rc);
289 RTPrintf("BandwidthGroup%zu=%ls,%s,%lld\n", i, strName.raw(), pszType, cMaxBytesPerSec);
293 LONG64 cBytes = cMaxBytesPerSec;
322 LONG64 cBits = cMaxBytesPerSec;
/vbox/src/VBox/Main/src-server/
H A DBandwidthControlImpl.cpp502 rc = createBandwidthGroup(gr.strName, gr.enmType, gr.cMaxBytesPerSec);
526 group.cMaxBytesPerSec = (*it)->i_getMaxBytesPerSec();
/vbox/include/VBox/
H A Dsettings.h821 : cMaxBytesPerSec(0),
828 && (cMaxBytesPerSec == i.cMaxBytesPerSec)
833 uint64_t cMaxBytesPerSec; member in struct:settings::BandwidthGroup
/vbox/src/VBox/Main/xml/
H A DSettings.cpp3333 if (!pelmBandwidthGroup->getAttributeValue("maxBytesPerSec", gr.cMaxBytesPerSec))
3335 pelmBandwidthGroup->getAttributeValue("maxMbPerSec", gr.cMaxBytesPerSec);
3336 gr.cMaxBytesPerSec *= _1M;
4793 pelmThis->setAttribute("maxBytesPerSec", gr.cMaxBytesPerSec);
4795 pelmThis->setAttribute("maxMbPerSec", gr.cMaxBytesPerSec / _1M);
5659 if (gr.cMaxBytesPerSec % _1M)
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp1432 LONG64 cMaxBytesPerSec; local
1437 hrc = bwGroups[i]->COMGETTER(MaxBytesPerSec)(&cMaxBytesPerSec); H();
1447 InsertConfigInteger(pBwGroup, "Max", cMaxBytesPerSec);
1448 InsertConfigInteger(pBwGroup, "Start", cMaxBytesPerSec);
1457 InsertConfigInteger(pBwGroup, "Max", cMaxBytesPerSec);

Completed in 3691 milliseconds