Searched refs:details (Results 1 - 25 of 33) sorted by relevance

12

/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageInfo.cpp52 VMINFO_DETAILS details,
64 if (details == VMINFO_MACHINEREADABLE)
102 if (details == VMINFO_MACHINEREADABLE)
110 HRESULT hrc2 = showSnapshots(snapshot, currentSnapshot, details, newPrefix, level + 1);
268 VMINFO_DETAILS details)
275 if (bwGroups.size() && details != VMINFO_MACHINEREADABLE)
288 if (details == VMINFO_MACHINEREADABLE)
344 if (details != VMINFO_MACHINEREADABLE)
362 VMINFO_DETAILS details /*= VMINFO_NONE*/)
377 if (details
50 showSnapshots(ComPtr<ISnapshot> &rootSnapshot, ComPtr<ISnapshot> &currentSnapshot, VMINFO_DETAILS details, const Utf8Str &prefix , int level ) argument
267 showBandwidthGroups(ComPtr<IBandwidthControl> &bwCtrl, VMINFO_DETAILS details) argument
2759 VMINFO_DETAILS details = VMINFO_NONE; local
[all...]
H A DVBoxManage.h147 /** showVMInfo details */
151 VMINFO_STANDARD = 1, /**< standard details */
226 VMINFO_DETAILS details,
233 VMINFO_DETAILS details = VMINFO_NONE);
236 VMINFO_DETAILS details);
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQIArrowSplitter.h58 /** Returns splitter details. */
59 const QStringPairList& details() const { return m_details; } function in class:QIArrowSplitter
60 /** Defines splitter @a details. */
61 void setDetails(const QStringPairList &details);
70 /** Updates details-browser visibility. */
73 /** Navigates through details-list backward. */
75 /** Navigates through details-list forward. */
87 /** Updates details. */
100 /** Holds the details-browser. */
102 /** Holds details
[all...]
H A DQIMessageBox.cpp70 /* Make sure details-text is NOT empty: */
73 /* Split details into paragraphs: */
75 /* Make sure details-text has at least one paragraph: */
79 QStringPairList details; local
86 /* Append each pair into details-list: */
87 details << QStringPair(parts[0], parts[1]);
90 /* Pass details-list to details-container: */
91 m_pDetailsContainer->setDetails(details);
92 /* Update details
[all...]
H A DQIArrowSplitter.cpp169 void QIArrowSplitter::setDetails(const QStringPairList &details) argument
171 /* Assign new details: */
172 m_details = details;
173 /* Reset the details-list index: */
177 /* Update details-browser visibility: */
179 /* Update details: */
189 /* Update details-browser scroll-bars: */
204 /* Update details-browser visibility according switch-button state: */
212 /* Make sure details-page index feats the bounds: */
214 /* Decrease details
[all...]
/vbox/src/VBox/ValidationKit/testmanager/htdocs/css/
H A Ddetails.css30 * The test details page has no side menu, so adjust the top-menu and main
58 table.tmtbl-testresult-details {
66 table.tmtbl-testresult-details caption {
72 table.tmtbl-testresult-details td, table.tmtbl-testresult-details th {
82 table.tmtbl-testresult-details th {
86 .tmtbl-result-details-caption {
93 .tmtbl-result-details-subcaption {
/vbox/src/libs/xpcom18a4/python/server/
H A Dloader.py150 except xpcom.COMException, details:
153 if details.errno==nsError.NS_ERROR_NO_INTERFACE:
155 entry.leafName, details.message)
158 except SyntaxError, details:
161 entry.leafName, details)
/vbox/src/VBox/Frontends/VirtualBox/src/medium/
H A DUIMedium.h192 /** Returns the hard drive medium storage details. */
227 /** Returns the details of this medium as a single-line string.
232 * @note For hard drives, the details include the location, type and the logical size of the hard drive.
241 QString details(bool fNoDiffs = false, bool fPredictDiff = false, bool fUseHTML = false) const;
243 /** Shortcut to <tt>#details(fNoDiffs, fPredictDiff, true)</tt>. */
244 QString detailsHTML(bool fNoDiffs = false, bool fPredictDiff = false) const { return details(fNoDiffs, fPredictDiff, true); }
332 /** Holds the hard drive medium storage details. */
H A DUIMedium.cpp221 /* Refresh hard drive storage details: */
426 QString UIMedium::details(bool fNoDiffs /* = false */, function in class:UIMedium
478 // @todo prepend the details with the warning/error icon when not accessible
H A DUIMediumManager.cpp140 /** Returns QString <i>storage details</i> of the wrapped UIMedium. */
141 QString details() const { return m_medium.storageDetails(); } function in class:UIMediumItem
1611 /* Acquire required details: */
1612 QString strDetails = pCurrentItem->details();
1651 /* Update required details: */
1684 /* Update required details: */
1801 infoLabel(UIMediumType_HardDisk, 3)->setText(QApplication::translate("VBoxMediaManagerDlg", "Storage details:"));
/vbox/src/libs/xpcom18a4/python/
H A Dcomponents.py187 except xpcom.COMException, details:
190 if details.errno == nsError.NS_ERROR_FACTORY_NOT_REGISTERED:
191 raise xpcom.COMException(details.errno, "No such component '%s'" % (self.contractid,))
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_handle.c156 char details[30]; local
210 (void) sprintf(details, " (0x%llx)",
215 details[0] = 0;
223 details, where, offinfo);
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DVBoxMediaComboBox.cpp157 * that for these differencing hard disks, the details of their base hard disks
158 * are shown instead of their own details (human-friendly mode).
284 aMedium.details (!mShowDiffs));
295 setItemText (aIndex, aMedium.details (!mShowDiffs));
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dparam.h115 #error MAXUPRC less than CHILD_MAX. See options(4) for details.
/vbox/src/VBox/Frontends/VirtualBox/src/selector/
H A DVBoxSnapshotsWgt.cpp269 QString details; local
275 details = VBoxSnapshotsWgt::tr (" (current, ", "Snapshot details");
277 details = " (";
278 details += mOnline ? VBoxSnapshotsWgt::tr ("online)", "Snapshot details")
279 : VBoxSnapshotsWgt::tr ("offline)", "Snapshot details");
293 .arg (name) .arg (details).arg (dateTime);
480 mShowSnapshotDetailsAction->setStatusTip (tr ("Show the details of the selected snapshot"));
530 /* Enable/disable the details actio
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DVBoxGlobal.h249 /* details generators */
251 QString details(const CMedium &medium, bool fPredictDiff, bool fUseHtml = true);
253 QString details (const CUSBDevice &aDevice) const;
H A DVBoxGlobal.cpp790 QString VBoxGlobal::details(const CMedium &cmedium, bool fPredictDiff, bool fUseHtml /* = true*/) function in class:VBoxGlobal
810 /* Return UI medium details: */
812 uimedium.details(true /* aNoDiffs */, fPredictDiff);
816 * Returns the details of the given USB device as a single-line string.
818 QString VBoxGlobal::details (const CUSBDevice &aDevice) const function in class:VBoxGlobal
822 sDetails = tr("Unknown device", "USB device details");
831 tr ("Unknown device %1:%2", "USB device details")
949 * Returns a details report on a given VM represented as a HTML table.
978 /* Compose details report */
983 QString item = QString (sSectionItemTpl2).arg (tr ("Name", "details repor
[all...]
/vbox/src/libs/xpcom18a4/python/client/
H A D__init__.py529 except COMException, details:
530 if details.errno != nsError.NS_ERROR_NULL_POINTER:
/vbox/src/VBox/Frontends/VirtualBox/src/settings/global/
H A DUIGlobalSettingsNetwork.cpp756 UIGlobalSettingsNetworkDetailsNAT details(this, data);
757 if (details.exec() == QDialog::Accepted)
859 UIGlobalSettingsNetworkDetailsHost details(this, data);
860 if (details.exec() == QDialog::Accepted)
/vbox/src/libs/xpcom18a4/python/test/
H A Dtest_test_component.py455 except xpcom.Exception, details:
456 if details.errno != xpcom.nsError.NS_ERROR_NO_INTERFACE:
457 raise RuntimeError, "Wrong COM exception type: %r" % (details,)
/vbox/src/VBox/Installer/linux/scripts/
H A DVBoxHeadlessXOrg.sh20 # rendering. For details, options and configuration see the usage() function
116 will provide the configuration details via VirtualBox extra data. This
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsUSB.cpp110 QAction *pAction = addAction(vboxGlobal().details(usb));
659 usbFilterData.m_strName = vboxGlobal().details(usb);
690 /* Configure USB filter details dialog: */
708 /* Run USB filter details dialog: */
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMachineLogic.cpp672 msgCenter().cannotAttachUSBDevice(error, vboxGlobal().details(device), machineName());
674 msgCenter().cannotDetachUSBDevice(error, vboxGlobal().details(device), machineName());
1797 msgCenter().cannotAttachUSBDevice(console(), vboxGlobal().details(device));
1811 msgCenter().cannotDetachUSBDevice(console(), vboxGlobal().details(device));
2219 QAction *pAttachUSBAction = pMenu->addAction(vboxGlobal().details(device),
H A DUIIndicatorsPool.cpp512 strFullData += QString("<br><b><nobr>%1</nobr></b>").arg(vboxGlobal().details(usbDevice));
641 const QString strVRAMSize = VBoxGlobal::tr("<nobr>%1 MB</nobr>", "details report").arg(uVRAMSize);
643 .arg(VBoxGlobal::tr("Video Memory", "details report"), strVRAMSize);
651 .arg(VBoxGlobal::tr("Screens", "details report"), strMonitorCount);
659 ? VBoxGlobal::tr("Enabled", "details report (3D Acceleration)")
660 : VBoxGlobal::tr("Disabled", "details report (3D Acceleration)");
662 .arg(VBoxGlobal::tr("3D Acceleration", "details report"), strAcceleration3D);
840 VBoxGlobal::tr("Active", "details report (VT-x/AMD-V)") :
841 VBoxGlobal::tr("Inactive", "details report (VT-x/AMD-V)");
846 VBoxGlobal::tr("Active", "details repor
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/
H A DUIGDetailsElements.cpp126 m_text << UITextTableLine(QApplication::translate("UIGDetails", "Name", "details (general)"), machine().GetName());
129 m_text << UITextTableLine(QApplication::translate("UIGDetails", "Operating System", "details (general)"),
148 m_text << UITextTableLine(QApplication::translate("UIGDetails", "Groups", "details (general)"), groups.join(", "));
152 m_text << UITextTableLine(QApplication::translate("UIGDetails", "Information Inaccessible", "details"), QString());
309 m_text << UITextTableLine(QApplication::translate("UIGDetails", "Base Memory", "details (system)"),
310 QApplication::translate("UIGDetails", "%1 MB", "details").arg(machine().GetMemorySize()));
315 m_text << UITextTableLine(QApplication::translate("UIGDetails", "Processors", "details (system)"),
321 m_text << UITextTableLine(QApplication::translate("UIGDetails", "Execution Cap", "details (system)"),
322 QApplication::translate("UIGDetails", "%1%", "details").arg(iCPUExecCap));
335 m_text << UITextTableLine(QApplication::translate("UIGDetails", "Boot Order", "details (syste
[all...]

Completed in 108 milliseconds

12