Changeset 93485 in vbox
- Timestamp:
- Jan 29, 2022 12:32:20 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149604
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Debugger/DBGPlugInFreeBsd.cpp ¶
r93470 r93485 218 218 * @param pThis The instance data. 219 219 * @param pUVM The user mode VM handle. 220 * @param pVMM The VMM function table. 220 221 * @param pszName The image name. 221 222 * @param uKernelStart The kernel start address. -
TabularUnified trunk/src/VBox/Debugger/DBGPlugInSolaris.cpp ¶
r93470 r93485 443 443 * 444 444 * @param pUVM The user mode VM handle. 445 * @param pVMM The VMM function table. 445 446 * @param pThis Our instance data. 446 447 * @param pModCtl Pointer to the modctl structure. … … 595 596 * 596 597 * @param pUVM The user mode VM handle. 598 * @param pVMM The VMM function table. 597 599 * @param pThis Our instance data. 598 600 * @param pModCtl Pointer to the modctl structure. -
TabularUnified trunk/src/VBox/Debugger/VBoxDbgStatsQt.cpp ¶
r93468 r93485 585 585 * @param a_pVMM The VMM function table. 586 586 */ 587 VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE pVMM);587 VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE a_pVMM); 588 588 589 589 /** Destructor */ … … 2684 2684 2685 2685 2686 VBoxDbgStatsModelVM::VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE pVMM)2687 : VBoxDbgStatsModel(a_pParent), VBoxDbgBase(a_pDbgGui), m_pVMM( pVMM)2686 VBoxDbgStatsModelVM::VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE a_pVMM) 2687 : VBoxDbgStatsModel(a_pParent), VBoxDbgBase(a_pDbgGui), m_pVMM(a_pVMM) 2688 2688 { 2689 2689 /* -
TabularUnified trunk/src/VBox/Main/src-client/MachineDebuggerImpl.cpp ¶
r93470 r93485 1440 1440 * 1441 1441 * @returns COM status code 1442 * @param aMagicVersion The VMMR3VTABLE_MAGIC_VERSION value of the 1443 * caller so we can check that the function table 1444 * is compatible. (Otherwise, the caller can't 1445 * safely release the UVM reference.) 1442 1446 * @param aUVM Where to store the vm handle. Since there is no 1443 1447 * uintptr_t in COM, we're using the max integer. (No,
Note:
See TracChangeset
for help on using the changeset viewer.