Lines Matching refs:progress
163 progress(aProgress),
174 ComObjPtr<Progress> progress;
249 !pTask->progress.isNull())
252 pTask->progress->COMGETTER(Canceled)(&fCanceled);
255 pTask->progress->SetCurrentOperationProgress(uPercent);
304 if (aTask->progress)
305 aTask->progress->SetCurrentOperationProgress(33);
320 if (aTask->progress)
321 aTask->progress->SetCurrentOperationProgress(66);
334 if (aTask->progress)
335 aTask->progress->SetCurrentOperationProgress(99);
343 if (!aTask->progress.isNull())
344 aTask->progress->i_notifyComplete(rc);
379 if (aTask->progress)
380 aTask->progress->SetCurrentOperationProgress((ULONG)(fPercentStep * i));
390 if (!aTask->progress.isNull())
391 aTask->progress->i_notifyComplete(rc);
472 if (!aTask->progress.isNull())
473 aTask->progress->i_notifyComplete(rc);
512 if (aTask->progress)
513 aTask->progress->SetCurrentOperationProgress((ULONG)(fPercentStep * i));
526 if (!aTask->progress.isNull())
527 aTask->progress->i_notifyComplete(rc);
542 ComObjPtr<Progress> progress;
547 /* Create the progress object */
548 progress.createObject();
550 rc = progress->init(mVirtualBox,
557 std::auto_ptr<TaskVFSExplorer> task(new TaskVFSExplorer(TaskVFSExplorer::Update, this, progress));
571 /* Return progress to the caller */
572 progress.queryInterfaceTo(aProgress.asOutParam());
662 ComObjPtr<Progress> progress;
665 /* Create the progress object */
666 progress.createObject();
668 rc = progress->init(mVirtualBox, static_cast<IVFSExplorer*>(this),
674 std::auto_ptr<TaskVFSExplorer> task(new TaskVFSExplorer(TaskVFSExplorer::Delete, this, progress));
692 /* Return progress to the caller */
693 progress.queryInterfaceTo(aProgress.asOutParam());