Changeset 99739 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- May 11, 2023 1:01:08 AM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 157315
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCCmdWorkers.cpp
r98103 r99739 274 274 * Inserts the given trace flow module into the list. 275 275 * 276 * @returns nothing.277 276 * @param pDbgc The DBGC instance. 278 277 * @param pTraceFlow The trace flow module. -
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r99069 r99739 1566 1566 * border and spacing on the edges. 1567 1567 * 1568 * @returns nothing.1569 1568 * @param hFlowBb The basic block handle. 1570 1569 * @param pDumpBb The dumper state to fill in for the basic block. … … 1610 1609 * Dumps a top or bottom boundary line. 1611 1610 * 1612 * @returns nothing.1613 1611 * @param hScreen The screen to draw to. 1614 1612 * @param uStartX Where to start drawing the boundary. … … 1630 1628 * Dumps a spacing line between the top or bottom boundary and the actual disassembly. 1631 1629 * 1632 * @returns nothing.1633 1630 * @param hScreen The screen to draw to. 1634 1631 * @param uStartX Where to start drawing the spacing. … … 1650 1647 * Writes a given text to the screen. 1651 1648 * 1652 * @returns nothing.1653 1649 * @param hScreen The screen to draw to. 1654 1650 * @param uStartX Where to start drawing the line. … … 1673 1669 * Dumps one basic block using the dumper callback. 1674 1670 * 1675 * @returns nothing.1676 1671 * @param pDumpBb The basic block dump state to dump. 1677 1672 * @param hScreen The screen to draw to. … … 1720 1715 * Dumps one branch table using the dumper callback. 1721 1716 * 1722 * @returns nothing.1723 1717 * @param pDumpBranchTbl The basic block dump state to dump. 1724 1718 * @param hScreen The screen to draw to. … … 5809 5803 * Used during DBGC initialization to configure events with defaults. 5810 5804 * 5811 * @returns VBox status code.5812 5805 * @param pDbgc The DBGC instance. 5813 5806 */ -
trunk/src/VBox/Debugger/DBGCGdbRemoteStub.cpp
r98103 r99739 355 355 * Deregisters the given trace point (needs to be unregistered from DBGF by the caller before). 356 356 * 357 * @returns nothing.358 357 * @param pTp The trace point to deregister. 359 358 */ … … 2134 2133 * Resets the packet buffer. 2135 2134 * 2136 * @returns nothing.2137 2135 * @param pThis The GDB stub context. 2138 2136 */ … … 2148 2146 * Resets the given GDB stub context to the initial state. 2149 2147 * 2150 * @returns nothing.2151 2148 * @param pThis The GDB stub context. 2152 2149 */ … … 2777 2774 * Destroys the given GDB stub context. 2778 2775 * 2779 * @returns nothing.2780 2776 * @param pThis The GDB stub context to destroy. 2781 2777 */ -
trunk/src/VBox/Debugger/DBGCIo.cpp
r98103 r99739 160 160 * Destroys all allocated data for the given dbeugger console I/O instance. 161 161 * 162 * @returns nothing.163 162 * @param pDbgcIo Pointer to the dbeugger console I/O instance data. 164 163 */ -
trunk/src/VBox/Debugger/DBGCIoProvInternal.h
r98103 r99739 73 73 * Destroys the given I/O provider instance. 74 74 * 75 * @returns nothing.76 75 * @param hDbgcIoProv The I/O provider instance handle to destroy. 77 76 */ -
trunk/src/VBox/Debugger/DBGCRemoteKd.cpp
r98103 r99739 1461 1461 * Returns a human readable string of the given manipulate request ID. 1462 1462 * 1463 * @returns nothing.1463 * @returns Human readable string (read only). 1464 1464 * @param idReq Request ID (API number in KD speak). 1465 1465 */ … … 1507 1507 * Dumps the content of a manipulate packet. 1508 1508 * 1509 * @returns nothing.1510 1509 * @param pSgBuf S/G buffer containing the manipulate packet payload. 1511 1510 */ … … 1689 1688 * Resets the emulated hardware breakpoint state to a state similar after a reboot. 1690 1689 * 1691 * @returns nothing.1692 1690 * @param pThis The KD context. 1693 1691 */ … … 1868 1866 * Updates emulated hardware breakpoints based on the written DR6 value. 1869 1867 * 1870 * @returns nothing.1871 1868 * @param pThis The KD context. 1872 1869 * @param uDr6 The DR7 value which is written. … … 2660 2657 * Resets the packet receive state machine. 2661 2658 * 2662 * @returns nothing.2663 2659 * @param pThis The KD context. 2664 2660 */ … … 2715 2711 * Sends a message to the remotes end. 2716 2712 * 2717 * @returns nothing.2718 2713 * @param pThis The KD context data. 2719 2714 * @param fWarning Flag whether this is a warning or an informational message. … … 3723 3718 * Tries to detect the guest OS running in the VM looking specifically for the Windows NT kind. 3724 3719 * 3725 * @returns Nothing.3726 3720 * @param pThis The KD context. 3727 3721 */ … … 4469 4463 * Destroys the given KD context. 4470 4464 * 4471 * @returns nothing.4472 4465 * @param pThis The KD context to destroy. 4473 4466 */ -
trunk/src/VBox/Debugger/DBGCScreenAscii.cpp
r98103 r99739 229 229 * Destroys a given ASCII screen. 230 230 * 231 * @returns nothing.232 231 * @param hScreen The screen handle. 233 232 */ … … 355 354 * Draws a vertical line at the given coordinates. 356 355 * 357 * @returns nothing.356 * @returns VBox status code. 358 357 * @param hScreen The screen handle. 359 358 * @param uX X position to draw. -
trunk/src/VBox/Debugger/DBGPlugInLinux.cpp
r99220 r99739 1258 1258 * Destroy the config database. 1259 1259 * 1260 * @returns nothing.1261 1260 * @param pThis The Linux digger data. 1262 1261 */ -
trunk/src/VBox/Debugger/DBGPlugInWinNt.cpp
r98103 r99739 579 579 * to gather debug information from the system. 580 580 * 581 * @returns nothing.582 581 * @param pThis The instance data. 583 582 * @param pUVM The user mode VM handle. … … 660 659 * Tries to resolve the KPCR and KPCRB addresses for each vCPU. 661 660 * 662 * @returns nothing.663 661 * @param pThis The instance data. 664 662 * @param pUVM The user mode VM handle. -
trunk/src/VBox/Debugger/VBoxDbgConsole.cpp
r98103 r99739 882 882 883 883 884 /**885 * The Debugger Console Thread886 *887 * @returns VBox status code (ignored).888 * @param Thread The thread handle.889 * @param pvUser Pointer to the VBoxDbgConsole object.s890 */891 884 /*static*/ DECLCALLBACK(int) 892 885 VBoxDbgConsole::backThread(RTTHREAD Thread, void *pvUser) -
trunk/src/VBox/Debugger/VBoxDbgStatsQt.cpp
r98103 r99739 365 365 * in anticipation of the next updateCallback call. 366 366 * 367 * @returns The current node.368 367 * @param pNode The current node. 369 368 */
Note:
See TracChangeset
for help on using the changeset viewer.