Searched defs:progress (Results 51 - 62 of 62) sorted by relevance

123

/vbox/src/VBox/Main/src-server/
H A DApplianceImplImport.cpp87 ComObjPtr<Progress> progress;
93 rc = i_readImpl(m->locInfo, progress);
101 /* Return progress to the caller */
102 progress.queryInterfaceTo(aProgress.asOutParam());
782 ComObjPtr<Progress> progress;
786 rc = i_importImpl(m->locInfo, progress);
794 /* Return progress to the caller */
795 progress.queryInterfaceTo(aProgress.asOutParam());
848 * @param aProgress Where to return the progress object.
856 /* Create the progress objec
1285 ComObjPtr<Progress> progress; local
1354 i_importImpl(const LocationInfo &locInfo, ComObjPtr<Progress> &progress) argument
1960 ComObjPtr<Progress> progress; local
[all...]
H A DHostImpl.cpp440 ComPtr<IProgress> progress; local
444 progress.asOutParam(),
H A DVirtualBoxImpl.cpp2322 * Adds a progress to the global collection of pending operations.
2323 * Usually gets called upon progress object initialization.
2348 * Removes the progress from the global collection of pending operations.
2349 * Usually gets called upon progress completion.
2351 * @param aId UUID of the progress operation to remove
2360 ComPtr<IProgress> progress;
2377 ComObjPtr<Progress> progress; member in struct:StartSVCHelperClientData
2393 * the progress through the \a aProgress object. The user function should never
2423 * @param aProgress progress object that will track operation completion
2447 d->progress
[all...]
H A DMachineImpl.cpp3226 /* Hack: in case the session is closing and there is a progress object
3479 /* Note that the progress object is finalized later */
3612 /* get the teleporter enable state for the progress object init. */
3618 /* create a progress object */
3619 ComObjPtr<ProgressProxy> progress;
3620 progress.createObject();
3621 rc = progress->init(mParent,
3633 rc = i_launchVMProcess(control, strFrontend, aEnvironment, progress);
3636 aProgress = progress;
3648 /* no progress objec
13295 ComObjPtr<ProgressProxy> progress; local
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIMessageCenter.cpp332 bool UIMessageCenter::showModalProgressDialog(CProgress &progress, argument
343 /* Create progress-dialog: */
345 QPointer<UIProgressDialog> pProgressDlg = new UIProgressDialog(progress, strTitle, pPixmap, cMinDuration, pDlgParent);
351 /* Make sure progress-dialog still valid: */
355 /* Delete progress-dialog: */
499 void UIMessageCenter::cannotOpenSession(const CProgress &progress, const QString &strMachineName) const argument
504 formatErrorInfo(progress));
686 void UIMessageCenter::cannotRemoveMachine(const CMachine &machine, const CProgress &progress) const
691 formatErrorInfo(progress));
784 void UIMessageCenter::cannotSaveMachineState(const CProgress &progress, cons argument
808 cannotPowerDownMachine(const CProgress &progress, const QString &strMachineName) const argument
876 cannotTakeSnapshot(const CProgress &progress, const QString &strMachineName, QWidget *pParent ) const argument
893 cannotRestoreSnapshot(const CProgress &progress, const QString &strSnapshotName, const QString &strMachineName) const argument
910 cannotRemoveSnapshot(const CProgress &progress, const QString &strSnapshotName, const QString &strMachineName) const argument
992 cannotCreateHostInterface(const CProgress &progress, QWidget *pParent ) argument
1007 cannotRemoveHostInterface(const CProgress &progress, const QString &strInterfaceName, QWidget *pParent ) argument
1343 cannotDeleteHardDiskStorage(const CProgress &progress, const QString &strLocation, QWidget *pParent ) const argument
1529 cannotCreateClone(const CProgress &progress, const QString &strMachineName, QWidget *pParent ) const argument
1563 cannotCreateHardDiskStorage(const CProgress &progress, const QString &strLocation, QWidget *pParent ) const argument
1614 cannotImportAppliance(const CProgress &progress, const QString &strPath, QWidget *pParent ) const argument
1622 cannotCheckFiles(const CProgress &progress, QWidget *pParent ) const argument
1629 cannotRemoveFiles(const CProgress &progress, QWidget *pParent ) const argument
1666 cannotExportAppliance(const CProgress &progress, const QString &strPath, QWidget *pParent ) const argument
1873 cannotStartMachine(const CProgress &progress, const QString &strName) const argument
2361 cannotInstallExtPack(const CProgress &progress, const QString &strFilename, QWidget *pParent ) const argument
2377 cannotUninstallExtPack(const CProgress &progress, const QString &strPackName, QWidget *pParent ) const argument
2400 cannotDropData(const CProgress &progress, QWidget *pParent ) const argument
2541 formatErrorInfo(const CProgress &progress) argument
[all...]
H A DVBoxGlobal.cpp3736 /* Make sure medium-enumeration is not in progress! */
4609 /* Prepare "VM spawning" progress: */
4610 CProgress progress = machine.LaunchVMProcess(session, strType, strEnv); local
4629 /* Postpone showing "VM spawning" progress.
4631 * otherwise we better show the progress...
4632 * If starting separately, then show the progress now. */
4634 msgCenter().showModalProgressDialog(progress, machine.GetName(),
4636 if (!progress.isOk() || progress.GetResultCode() != 0)
4637 msgCenter().cannotOpenSession(progress, machin
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMachineLogic.cpp1424 /* Prepare the take-snapshot progress: */
1425 CProgress progress = machine().TakeSnapshot(strSnapshotName, strSnapshotDescription, true); local
1428 /* Show the take-snapshot progress: */
1429 msgCenter().showModalProgressDialog(progress, machineName(), ":/progress_snapshot_create_90px.png");
1430 if (!progress.isOk() || progress.GetResultCode() != 0)
1431 msgCenter().cannotTakeSnapshot(progress, machineName());
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaEnc.c2188 SRes LzmaEnc_Encode(CLzmaEncHandle pp, ISeqOutStream *outStream, ISeqInStream *inStream, ICompressProgress *progress, argument
2208 if (progress != 0)
2210 res = progress->Progress(progress, p->nowPos64, RangeEnc_GetProcessed(&p->rc));
2252 int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig)
2268 progress, alloc, allocBig);
2278 ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig)
2291 writeEndMark, progress, alloc, allocBig);
2251 LzmaEnc_MemEncode(CLzmaEncHandle pp, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig) argument
2276 LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig) argument
/vbox/src/VBox/Frontends/VBoxSDL/
H A DVBoxSDL.cpp1507 ComPtr<IProgress> progress; local
1508 rc = pMachine->LaunchVMProcess(pSession, Bstr("headless").raw(), NULL, progress.asOutParam());
1509 if (SUCCEEDED(rc) && !progress.isNull())
1512 rc = progress->WaitForCompletion(-1);
1516 rc = progress->COMGETTER(Completed)(&completed);
1520 rc = progress->COMGETTER(ResultCode)(&iRc);
1525 ProgressErrorInfo info(progress);
4191 * Initiates a saved state and updates the titlebar with progress information
/vbox/src/libs/libxml2-2.6.31/
H A Dxmlregexp.c3242 * Try to progress as much as possible on the input
3363 goto progress;
3381 progress:
3706 int progress = 1; local
3874 * Try to progress as much as possible on the input
3995 goto progress;
4007 if ((progress) && (exec->state != NULL) &&
4009 progress = 0;
4032 progress:
4033 progress
[all...]
H A Drelaxng.c9979 int progress; local
10010 progress = 0;
10027 progress = 1;
10038 progress = 1;
10066 progress = 1;
10074 progress = 1;
10086 if (progress) {
10102 progress = 0;
10115 } while (progress == 1);
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...

Completed in 175 milliseconds

123