Searched refs:uPercent (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/Storage/testcase/
H A Dvditool.cpp204 static DECLCALLBACK(int) ProcessCallback(PVM pVM, unsigned uPercent, void *pvUser)
208 if (*pPercent != uPercent)
210 *pPercent = uPercent;
212 if ((uPercent % 10) == 0 && uPercent)
213 RTPrintf("%d%%", uPercent);
234 unsigned uPercent = 0;
235 rc = VDIConvertImage(pszUtf8Filename, ProcessCallback, &uPercent);
/vbox/include/iprt/
H A Ds3.h53 * @param uPercent The process completion percentage.
56 typedef DECLCALLBACK(int) FNRTS3PROGRESS(unsigned uPercent, void *pvUser);
/vbox/src/VBox/Runtime/testcase/
H A DtstRTS3.cpp58 static int progress(unsigned uPercent, void *pvUser) argument
61 RTTestIPrintf(RTTESTLVL_ALWAYS, " Progress for %s - %d%% done.\n", (char*)pvUser, (int)uPercent);
/vbox/src/VBox/Main/src-server/
H A DVFSExplorerImpl.cpp170 static int uploadProgress(unsigned uPercent, void *pvUser);
244 int VFSExplorer::TaskVFSExplorer::uploadProgress(unsigned uPercent, void *pvUser) argument
255 pTask->progress->SetCurrentOperationProgress(uPercent);
H A DApplianceImpl.cpp1263 int Appliance::TaskOVF::updateProgress(unsigned uPercent, void *pvUser) argument
1274 pTask->pProgress->SetCurrentOperationProgress(uPercent);
H A DMediumImpl.cpp271 static DECLCALLBACK(int) vdProgressCall(void *pvUser, unsigned uPercent);
803 * @param uPercent Completion percentage (0-100).
806 DECLCALLBACK(int) Medium::Task::vdProgressCall(void *pvUser, unsigned uPercent) argument
814 HRESULT rc = that->SetCurrentOperationProgress(uPercent * 99 / 100);
/vbox/src/VBox/Runtime/common/checksum/
H A Dmanifest.cpp92 int rtSHAProgressCallback(unsigned uPercent, void *pvUser) argument
95 return pData->pfnProgressCallback((unsigned)( (uPercent + (float)pData->cCurrentFile * 100.0)
/vbox/src/VBox/Main/include/
H A DApplianceImplPrivate.h140 static int updateProgress(unsigned uPercent, void *pvUser);
H A DGuestCtrlImplPrivate.h378 static int uploadProgress(unsigned uPercent, void *pvUser);
H A DGuestSessionImpl.h55 int setProgress(ULONG uPercent);
H A DConsoleImpl.h741 static DECLCALLBACK(int) i_stateProgressCallback(PUVM pUVM, unsigned uPercent, void *pvUser);
/vbox/src/VBox/VMM/VMMR3/
H A DSSM.cpp482 unsigned uPercent; member in struct:SSMHANDLE
1092 if (uPct != pSSM->uPercent)
1095 pSSM->uPercent = uPct;
3146 && pSSM->uPercent <= 100 - pSSM->uPercentDone)
3149 pSSM->pfnProgress(pSSM->pVM->pUVM, pSSM->uPercent, pSSM->pvUser);
3150 pSSM->uPercent++;
3151 pSSM->offEstProgress = (pSSM->uPercent - pSSM->uPercentPrepare - pSSM->uPercentLive) * pSSM->cbEstTotal
4757 if (uPct != pSSM->uPercent)
4760 pSSM->uPercent = uPct;
4905 AssertMsg( pSSM->uPercent
[all...]
/vbox/include/VBox/vmm/
H A Dvmapi.h394 * @param uPercent Completion percentage (0-100).
397 typedef DECLCALLBACK(int) FNVMPROGRESS(PUVM pUVM, unsigned uPercent, void *pvUser);
H A Dssm.h1208 VMMR3DECL(void) SSMR3HandleReportLivePercent(PSSMHANDLE pSSM, unsigned uPercent);
/vbox/src/VBox/Main/src-client/
H A DConsoleImplTeleporter.cpp586 static DECLCALLBACK(int) teleporterProgressCallback(PUVM pUVM, unsigned uPercent, void *pvUser) argument
591 HRESULT hrc = pState->mptrProgress->SetCurrentOperationProgress(uPercent);
H A DGuestSessionImplTasks.cpp94 int GuestSessionTask::setProgress(ULONG uPercent) argument
110 HRESULT hr = mProgress->SetCurrentOperationProgress(uPercent);
H A DConsoleImpl.cpp9080 * @param uPercent Completion percentage (0-100).
9085 DECLCALLBACK(int) Console::i_stateProgressCallback(PUVM pUVM, unsigned uPercent, void *pvUser) argument
9091 pProgress->SetCurrentOperationProgress(uPercent);

Completed in 178 milliseconds