Lines Matching defs:aProgress
209 Task(Medium *aMedium, Progress *aProgress)
214 mProgress(aProgress),
288 Progress *aProgress,
291 : Medium::Task(aMedium, aProgress),
307 Progress *aProgress,
312 : Medium::Task(aMedium, aProgress),
347 Progress *aProgress,
357 : Medium::Task(aMedium, aProgress),
411 Progress *aProgress,
414 : Medium::Task(aMedium, aProgress),
440 Progress *aProgress,
443 : Medium::Task(aMedium, aProgress),
470 Progress *aProgress,
473 : Medium::Task(aMedium, aProgress),
496 Progress *aProgress,
499 : Medium::Task(aMedium, aProgress),
526 Progress *aProgress,
529 : Medium::Task(aMedium, aProgress),
570 Progress *aProgress,
579 : Medium::Task(aMedium, aProgress),
622 Progress *aProgress,
631 : Medium::Task(aMedium, aProgress),
684 Progress *aProgress,
686 : Medium::Task(aMedium, aProgress),
2493 ComPtr<IProgress> &aProgress)
2559 pProgress.queryInterfaceTo(aProgress.asOutParam());
2567 HRESULT Medium::deleteStorage(ComPtr<IProgress> &aProgress)
2577 pProgress.queryInterfaceTo(aProgress.asOutParam());
2584 ComPtr<IProgress> &aProgress)
2659 pProgress.queryInterfaceTo(aProgress.asOutParam());
2665 ComPtr<IProgress> &aProgress)
2692 pProgress.queryInterfaceTo(aProgress.asOutParam());
2699 ComPtr<IProgress> &aProgress)
2703 rc = cloneTo(aTarget, aVariant, NULL, aProgress);
2710 ComPtr<IProgress> &aProgress)
2840 pProgress.queryInterfaceTo(aProgress.asOutParam());
2848 HRESULT Medium::setLocation(const com::Utf8Str &aLocation, ComPtr<IProgress> &aProgress)
2852 NOREF(aProgress);
2866 HRESULT Medium::compact(ComPtr<IProgress> &aProgress)
2927 pProgress.queryInterfaceTo(aProgress.asOutParam());
2936 ComPtr<IProgress> &aProgress)
2997 pProgress.queryInterfaceTo(aProgress.asOutParam());
3005 HRESULT Medium::reset(ComPtr<IProgress> &aProgress)
3077 pProgress.queryInterfaceTo(aProgress.asOutParam());
3089 ComPtr<IProgress> &aProgress)
3213 pProgress.queryInterfaceTo(aProgress.asOutParam());
4363 * If @a aProgress is not NULL but the object it points to is @c null then a
4364 * new progress object will be created and assigned to @a *aProgress on
4365 * success, otherwise the existing progress object is used. If @a aProgress is
4371 * caller until the operation is completed. Note that @a aProgress cannot be
4377 * @param aProgress Where to find/store a Progress object to track
4387 ComObjPtr<Progress> *aProgress,
4392 AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
4441 if (aProgress != NULL)
4444 pProgress = *aProgress;
4484 if (SUCCEEDED(rc) && aProgress != NULL)
4485 *aProgress = pProgress;
4605 * If @a aProgress is not NULL but the object it points to is @c null then a new
4606 * progress object will be created and assigned to @a *aProgress on success,
4613 * caller until the operation is completed. Note that @a aProgress cannot be
4616 * @param aProgress Where to find/store a Progress object to track operation
4624 HRESULT Medium::i_deleteStorage(ComObjPtr<Progress> *aProgress,
4627 AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
4739 if (aProgress != NULL)
4742 pProgress = *aProgress;
4773 if (SUCCEEDED(rc) && aProgress != NULL)
4774 *aProgress = pProgress;
5356 * If @a aProgress is not NULL but the object it points to is @c null then a new
5357 * progress object will be created and assigned to @a *aProgress on success,
5359 * progress object is created/used at all. Note that @a aProgress cannot be
5368 * @param aProgress Where to find/store a Progress object to track operation
5381 ComObjPtr<Progress> *aProgress,
5387 AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
5401 if (aProgress != NULL)
5404 pProgress = *aProgress;
5448 if (SUCCEEDED(rc) && aProgress != NULL)
5449 *aProgress = pProgress;
5605 * @param aProgress Progress object to use.
5614 const ComObjPtr<Progress> &aProgress)
5618 AssertReturn(!aProgress.isNull(), E_INVALIDARG);
5653 pTask = new Medium::ExportTask(this, aProgress, aFilename, aFormat,
5682 * @param aProgress Progress object to use.
5691 const ComObjPtr<Progress> &aProgress)
5695 AssertReturn(!aProgress.isNull(), E_INVALIDARG);
5748 pTask = new Medium::ImportTask(this, aProgress, aFilename, aFormat,
5778 * @param aProgress Progress object to use.
5788 const ComObjPtr<Medium> &aParent, IProgress **aProgress,
5792 CheckComArgOutPointerValid(aProgress);
5908 pProgress.queryInterfaceTo(aProgress);