Searched defs:snapshot (Results 1 - 9 of 9) sorted by relevance
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/ |
H A D | UIMachine.cpp | 51 /* Restore current snapshot if requested: */ 61 /* Which snapshot we are restoring? */ 62 CSnapshot snapshot = machine.GetCurrentSnapshot(); local 64 /* Prepare restore-snapshot progress: */ 65 CProgress progress = machine.RestoreSnapshot(snapshot); 67 return msgCenter().cannotRestoreSnapshot(machine, snapshot.GetName(), machine.GetName()); 69 /* Show the snapshot-discarding progress: */ 72 return msgCenter().cannotRestoreSnapshot(progress, snapshot.GetName(), machine.GetName()); 77 /* Clear snapshot-restoring request: */
|
H A D | UIMachineWindow.cpp | 503 CSnapshot snapshot = machine().GetCurrentSnapshot(); local 504 strSnapshotName = " (" + snapshot.GetName() + ")";
|
H A D | UIMachineLogic.cpp | 509 powerOff(false /* do NOT restore current snapshot */); 515 powerOff(false /* do NOT restore current snapshot */); 1393 /* Create take-snapshot dialog: */ 1424 /* Prepare the take-snapshot progress: */ 1428 /* Show the take-snapshot progress: */ 2466 const CSnapshot &snapshot, 2471 if (!snapshot.isNull()) 2473 /* Check the current snapshot name */ 2474 QString strName = snapshot.GetName(); 2478 /* Traversing all the snapshot childre 2465 searchMaxSnapshotIndex(const CMachine &machine, const CSnapshot &snapshot, const QString &strNameTemplate) argument [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/seamless/ |
H A D | UIMachineWindowSeamless.cpp | 272 /* Get snapshot(s): */ 276 CSnapshot snapshot = machine().GetCurrentSnapshot(); local 277 strSnapshotName = " (" + snapshot.GetName() + ")";
|
/vbox/src/VBox/Frontends/VirtualBox/src/medium/ |
H A D | UIMedium.cpp | 291 /* Prepare snapshot usage: */ 300 * giving the VM name in front of snapshot names. */ 305 /* Look for the corresponding snapshot: */ 306 CSnapshot snapshot = machine.FindSnapshot(strSnapshotID); local 309 if (snapshot.isNull()) 312 /* Refresh snapshot usage flag: */ 315 /* Append snapshot usage: */ 318 strSnapshotUsage += snapshot.GetName(); 326 /* Append snapshot usage: */
|
H A D | UIMediumEnumerator.cpp | 182 LogRel(("UIMediumEnumerator: Machine (or snapshot) event received, ID = %s\n", 216 LogRel(("UIMediumEnumerator: Machine (or snapshot) event processed, ID = %s\n", 446 /* Calculate actual usage starting from root-snapshot if necessary: */ 455 * @param snapshot is reference we are calculating <i>usage</i> for. 459 void UIMediumEnumerator::calculateActualUsage(const CSnapshot &snapshot, CMediumMap ¤tCMediums, QStringList ¤tCMediumIDs) const argument 461 /* Check passed snapshot: */ 462 if (snapshot.isNull()) 465 /* Calculate actual usage for passed snapshot machine: */ 466 calculateActualUsage(snapshot.GetMachine(), currentCMediums, currentCMediumIDs); 468 /* Iterate through passed snapshot childre [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/ |
H A D | UIMachineWindowFullscreen.cpp | 487 /* Get snapshot(s): */ 491 CSnapshot snapshot = machine().GetCurrentSnapshot(); local 492 strSnapshotName = " (" + snapshot.GetName() + ")";
|
/vbox/src/VBox/Frontends/VirtualBox/src/selector/ |
H A D | VBoxSnapshotsWgt.cpp | 59 /* Normal snapshot item (child of tree-widget) */ 68 /* Normal snapshot item (child of tree-widget-item) */ 152 CSnapshot snapshot() const { return mSnapshot; } function in class:SnapshotWgtItem 165 VBoxSnapshotsWgt::tr ("The current state differs from the state stored in the current snapshot") : 167 VBoxSnapshotsWgt::tr ("The current state is identical to the state stored in the current snapshot") : 273 /* The current snapshot is always bold */ 301 /** Holds pointer to snapshot-widget 'this' item belongs to. */ 320 * changing tree-widget item content (rename) leads to snapshot update & 321 * snapshot update leads to changing tree-widget item content. 363 * to draw lines (branches) between the snapshot node 617 CSnapshot snapshot = mMachine.FindSnapshot(strSnapshotId); local 666 CSnapshot snapshot = mMachine.FindSnapshot(snapId); local 732 CSnapshot snapshot; local 931 CSnapshot snapshot = mMachine.FindSnapshot(QString::null); local [all...] |
/vbox/src/VBox/Frontends/VBoxManage/ |
H A D | VBoxManageInfo.cpp | 98 ComPtr<ISnapshot> snapshot = coll[index]; local 99 if (snapshot) 110 HRESULT hrc2 = showSnapshots(snapshot, currentSnapshot, details, newPrefix, level + 1); 170 return fShort ? "deletingsnapshotlive" : "deleting snapshot live"; 172 return fShort ? "deletingsnapshotlivepaused" : "deleting snapshot live paused"; 176 return fShort ? "restoringsnapshot" : "restoring snapshot"; 178 return fShort ? "deletingsnapshot" : "deleting snapshot"; 2617 ComPtr<ISnapshot> snapshot; local 2618 rc = machine->FindSnapshot(Bstr().raw(), snapshot.asOutParam()); 2619 if (SUCCEEDED(rc) && snapshot) [all...] |
Completed in 73 milliseconds