Changeset 65118 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Jan 4, 2017 5:09:04 PM (8 years ago)
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCCmdHlp.cpp
r62838 r65118 255 255 256 256 /** 257 * @interface_method_impl{DBGCCMDHLP,pfnStrPrintf }257 * @interface_method_impl{DBGCCMDHLP,pfnStrPrintfV} 258 258 */ 259 259 static DECLCALLBACK(size_t) dbgcHlpStrPrintfV(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf, … … 699 699 700 700 /** 701 * @interface_method_impl{DBGCCMDHLP,pfnFail V}701 * @interface_method_impl{DBGCCMDHLP,pfnFailRcV} 702 702 */ 703 703 static DECLCALLBACK(int) dbgcHlpFailRcV(PDBGCCMDHLP pCmdHlp, PCDBGCCMD pCmd, int rc, const char *pszFormat, va_list va) … … 936 936 * @interface_method_impl{DBGCCMDHLP,pfnVarConvert} 937 937 */ 938 static DECLCALLBACK(int) dbgcHlpVarConvert(PDBGCCMDHLP pCmdHlp, PCDBGCVAR p InVar, DBGCVARTYPE enmToType, bool fConvSyms,938 static DECLCALLBACK(int) dbgcHlpVarConvert(PDBGCCMDHLP pCmdHlp, PCDBGCVAR pVar, DBGCVARTYPE enmToType, bool fConvSyms, 939 939 PDBGCVAR pResult) 940 940 { 941 941 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp); 942 DBGCVAR const InVar = *p InVar; /* if pInVar == pResult */942 DBGCVAR const InVar = *pVar; /* if pVar == pResult */ 943 943 PCDBGCVAR pArg = &InVar; /* lazy bird, clean up later */ 944 944 DBGFADDRESS Address; -
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r64770 r65118 1626 1626 * 1627 1627 * @returns nothing. 1628 * @param pDumpB bThe basic block dump state to dump.1628 * @param pDumpBranchTbl The basic block dump state to dump. 1629 1629 * @param hScreen The screen to draw to. 1630 1630 */ … … 2621 2621 2622 2622 /** 2623 * @callback_method_impl{FNDBGCCMD, 2624 * The 'p', 'pc', 'pt', 't', 'tc', and 'tt' commands.} 2623 * @callback_method_impl{FNDBGCCMD, The 'p'\, 'pc'\, 'pt'\, 't'\, 'tc'\, and 'tt' commands.} 2625 2624 */ 2626 2625 static DECLCALLBACK(int) dbgcCmdStepTrace(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs) … … 4717 4716 * @retval VINF_SUCCESS on success. 4718 4717 * 4718 * @param pCmdHlp The command helper callback table. 4719 4719 * @param pvBuf The buffer to convert into. 4720 4720 * @param pcbBuf The buffer size on input. The size of the result on output. -
trunk/src/VBox/Debugger/DBGCEval.cpp
r62838 r65118 573 573 * @param pDbgc Debugger console instance data. 574 574 * @param pszExpr The expression string. 575 * @param cchExpr The size of the expression string. 575 576 * @param enmCategory The target category for the result. 576 577 * @param pResult Where to store the result of the expression evaluation. … … 1043 1044 * @param paVarDescs See DBGCCMD::paVarDescs and DBGCFUNC::paVarDescs. 1044 1045 * @param cVarDescs See DBGCCMD::cVarDescs and DBGCFUNC::cVarDescs. 1045 * @param pszArg 1046 * @param pszArgs Pointer to the arguments to parse. 1046 1047 * @param piArg Where to return the index of the first argument in 1047 1048 * DBGC::aArgs. Always set. Caller must restore DBGC::iArg -
trunk/src/VBox/Debugger/DBGCScreenAscii.cpp
r64576 r65118 236 236 * 237 237 * @returns VBox status code. 238 * @param pScreen The screen to blit.238 * @param hScreen The screen to blit. 239 239 * @param pfnBlit Blitting callback. 240 240 * @param pvUser Opaque user data to pass to the dumper callback. -
trunk/src/VBox/Debugger/DBGCTcp.cpp
r62838 r65118 169 169 170 170 /** @copydoc FNDBGCBACKSETREADY */ 171 static DECLCALLBACK(void) dbgcTcpBackSetReady(PDBGCBACK pBack, bool f Busy)171 static DECLCALLBACK(void) dbgcTcpBackSetReady(PDBGCBACK pBack, bool fReady) 172 172 { 173 173 /* stub */ 174 174 NOREF(pBack); 175 NOREF(f Busy);175 NOREF(fReady); 176 176 } 177 177 -
trunk/src/VBox/Debugger/DBGPlugInLinux.cpp
r64359 r65118 2092 2092 * @param pszCfg The config data. 2093 2093 * @param ppszCfgNext Where to store the pointer to the data following the identifier. 2094 * @param pcbCfg Where the initial size of the string is stored.2095 * Contains the remaining string length on return.2096 2094 * @param ppCfgItem Where to store the created config item on success. 2097 2095 */ … … 2175 2173 * @returns VBox status code 2176 2174 * @param pThis The Linux digger data. 2177 * @param p bCfgThe config string.2175 * @param pszCfg The config string. 2178 2176 */ 2179 2177 static int dbgDiggerLinuxCfgParse(PDBGDIGGERLINUX pThis, const char *pszCfg) -
trunk/src/VBox/Debugger/VBoxDbgBase.h
r62480 r65118 44 44 * Construct the object. 45 45 * 46 * @param pDbgGuiPointer to the debugger gui object.46 * @param a_pDbgGui Pointer to the debugger gui object. 47 47 */ 48 48 VBoxDbgBase(VBoxDbgGui *a_pDbgGui); … … 130 130 * Construct the object. 131 131 * 132 * @param pDbgGui Pointer to the debugger gui object. 132 * @param a_pDbgGui Pointer to the debugger gui object. 133 * @param a_pParent Pointer to the parent object. 133 134 */ 134 135 VBoxDbgBaseWindow(VBoxDbgGui *a_pDbgGui, QWidget *a_pParent);
Note:
See TracChangeset
for help on using the changeset viewer.