Lines Matching refs:pProgress
48 IProgress *pProgress = NULL)
54 if (pProgress)
56 com::ProgressErrorInfo info(pProgress);
95 ComPtr<IProgress> pProgress;
96 rc = pAppl->Read(Bstr(szAbsOVF).raw(), pProgress.asOutParam());
98 rc = pProgress->WaitForCompletion(-1);
101 pProgress->COMGETTER(ResultCode)(&rc2);
102 if (FAILED(rc2)) throw MyError(rc2, "Appliance::Read() failed\n", pProgress);
236 rc = pAppl->ImportMachines(ComSafeArrayAsInParam(sfaOptions), pProgress.asOutParam());
238 rc = pProgress->WaitForCompletion(-1);
240 pProgress->COMGETTER(ResultCode)(&rc2);
241 if (FAILED(rc2)) throw MyError(rc2, "Appliance::ImportMachines() failed\n", pProgress);
361 ComPtr<IProgress> pProgress;
362 rc = pMachine->DeleteConfig(ComSafeArrayAsInParam(sfaMedia), pProgress.asOutParam());
364 rc = pProgress->WaitForCompletion(-1);