Changeset 64366 in vbox for trunk/src/VBox
- Timestamp:
- Oct 22, 2016 4:36:39 PM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit/utils
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecService.cpp
r62872 r64366 387 387 * @param pszOpcode The status opcode. Exactly 8 chars long, padd 388 388 * with space. 389 * @param pszDetail sFmtLonger description of the problem (format389 * @param pszDetailFmt Longer description of the problem (format 390 390 * string). 391 391 * @param va Format arguments. … … 413 413 * @param pszOpcode The status opcode. Exactly 8 chars long, padd 414 414 * with space. 415 * @param pszDetail sLonger description of the problem (format415 * @param pszDetailFmt Longer description of the problem (format 416 416 * string). 417 417 * @param ... Format arguments. … … 1575 1575 * @param fPollEvt The event mask returned by RTPollNoResume. 1576 1576 * @param phPipeR The pipe handle. 1577 * @param pu 32CrcThe current CRC-32 of the stream. (In/Out)1577 * @param puCrc32 The current CRC-32 of the stream. (In/Out) 1578 1578 * @param enmHndId The handle ID. 1579 1579 * @param pszOpcode The opcode for the data upload. … … 1735 1735 * @param fPollEvt The event mask returned by RTPollNoResume. 1736 1736 * @param idPollHnd The handle ID. 1737 * @param hStdInWThe standard input pipe.1737 * @param phStdInW The standard input pipe. 1738 1738 * @param pStdInBuf The standard input buffer. 1739 1739 */ … … 2240 2240 * @param pTxsExec The TXSEXEC instance. 2241 2241 * @param pszHowTo How to set up this standard handle. 2242 * @param pszStdWhat For what to setup redirection (stdin/stdout/stderr). 2242 2243 * @param fd Which standard handle it is (0 == stdin, 1 == 2243 2244 * stdout, 2 == stderr). … … 2891 2892 * @param argv The argument vector. 2892 2893 * @param pfExit For indicating exit when the exit code is zero. 2894 * @param pszUpgrading The upgraded image path. 2893 2895 */ 2894 2896 static RTEXITCODE txsAutoUpdateStage2(int argc, char **argv, bool *pfExit, const char *pszUpgrading) … … 3193 3195 * @param pszArgv0 The program name (argv[0]). 3194 3196 */ 3195 static void txsUsage(PRTSTREAM pStrm, const char * argv0)3197 static void txsUsage(PRTSTREAM pStrm, const char *pszArgv0) 3196 3198 { 3197 3199 RTStrmPrintf(pStrm, … … 3206 3208 " Default: %s \n" 3207 3209 , 3208 argv0,3210 pszArgv0, 3209 3211 g_szDefCdRomPath, 3210 3212 g_szDefScratchPath); -
trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecServiceInternal.h
r62484 r64366 77 77 * Print the usage information for this transport layer. 78 78 * 79 * @param pThis Pointer to the transport layer descriptor.80 79 * @param pStream The stream to print the usage info to. 81 80 * … … 94 93 * @retval VERR_INVALID_PARAMETER if we should exit with a non-zero status. 95 94 * 96 * @param pThis Pointer to the transport layer descriptor.97 95 * @param ch The short option value. 98 96 * @param pVal Pointer to the value union. -
trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecServiceTcp.cpp
r62673 r64366 347 347 348 348 /** 349 * @interface_method_impl{TXSTRANSPORT, txsTcpNotifyReboot}349 * @interface_method_impl{TXSTRANSPORT,pfnNotifyReboot} 350 350 */ 351 351 static DECLCALLBACK(void) txsTcpNotifyReboot(void) -
trunk/src/VBox/ValidationKit/utils/cpu/cidet-app.cpp
r62673 r64366 59 59 * restore the lower 32-bits of the base when saving and restoring the register). 60 60 */ 61 #if defined(RT_OS_DARWIN) && defined(RT_ARCH_AMD64)61 #if (defined(RT_OS_DARWIN) && defined(RT_ARCH_AMD64)) || defined(DOXYGEN_RUNNING) 62 62 # define CIDET_LEAVE_GS_ALONE 63 63 #endif … … 709 709 710 710 /** 711 * @interface_method_impl{CIDETCORE ::pfnReInitDataBuf}711 * @interface_method_impl{CIDETCORE,pfnReInitDataBuf} 712 712 */ 713 713 static DECLCALLBACK(bool) CidetAppCbReInitDataBuf(PCIDETCORE pThis, PCIDETBUF pBuf) … … 763 763 764 764 /** 765 * @interface_method_impl{CIDETCORE ::pfnSetupDataBuf}765 * @interface_method_impl{CIDETCORE,pfnSetupDataBuf} 766 766 */ 767 767 static DECLCALLBACK(bool) CidetAppCbSetupDataBuf(PCIDETCORE pThis, PCIDETBUF pBuf, void const *pvSrc) … … 787 787 788 788 /** 789 * @interface_method_impl{CIDETCORE ::pfnIsBufEqual}789 * @interface_method_impl{CIDETCORE,pfnIsBufEqual} 790 790 */ 791 791 static DECLCALLBACK(bool) CidetAppCbIsBufEqual(PCIDETCORE pThis, struct CIDETBUF *pBuf, void const *pvExpected) … … 831 831 832 832 /** 833 * @interface_method_impl{CIDETCORE ::pfnReInitCodeBuf}833 * @interface_method_impl{CIDETCORE,pfnReInitCodeBuf} 834 834 */ 835 835 static DECLCALLBACK(bool) CidetAppCbReInitCodeBuf(PCIDETCORE pThis, PCIDETBUF pBuf) … … 885 885 886 886 /** 887 * @interface_method_impl{CIDETCORE ::pfnSetupCodeBuf}887 * @interface_method_impl{CIDETCORE,pfnSetupCodeBuf} 888 888 */ 889 889 static DECLCALLBACK(bool) CidetAppCbSetupCodeBuf(PCIDETCORE pThis, PCIDETBUF pBuf, void const *pvInstr) … … 1055 1055 1056 1056 /** 1057 * @interface_method_impl{CIDETCORE ::pfnExecute}1057 * @interface_method_impl{CIDETCORE,pfnExecute} 1058 1058 */ 1059 1059 static DECLCALLBACK(bool) CidetAppCbExecute(PCIDETCORE pThis) … … 1105 1105 1106 1106 /** 1107 * @interface_method_impl{CIDETCORE ::pfnSetupBuf}1108 */ 1109 static DECLCALLBACK(void) CidetAppCbFailureV(PCIDETCORE pThis, const char *psz Msg, va_list va)1107 * @interface_method_impl{CIDETCORE,pfnFailure} 1108 */ 1109 static DECLCALLBACK(void) CidetAppCbFailureV(PCIDETCORE pThis, const char *pszFormat, va_list va) 1110 1110 { 1111 1111 RT_NOREF_PV(pThis); 1112 RTTestIFailedV(psz Msg, va);1112 RTTestIFailedV(pszFormat, va); 1113 1113 } 1114 1114 -
trunk/src/VBox/ValidationKit/utils/misc/loadgeneratorR0.cpp
r62484 r64366 71 71 * Service request handler entry point. 72 72 * 73 * @copydoc SUPR0SERVICEREQHANDLER73 * @copydoc FNSUPR0SERVICEREQHANDLER 74 74 */ 75 75 extern "C" DECLEXPORT(int) LoadGenR0ServiceReqHandler(PSUPDRVSESSION pSession, uint32_t uOperation, -
trunk/src/VBox/ValidationKit/utils/network/NetPerf.cpp
r62484 r64366 719 719 * 720 720 * @param pStats The statistics. 721 * @param cbPacket The packet size in bytes. 721 722 */ 722 723 static void netperfPrintLatencyStats(NETPERFSTATS const *pStats, uint32_t cbPacket) … … 1704 1705 * @returns Exit code. 1705 1706 * @param enmProto The protocol. 1706 * @param pParams The parameter block. 1707 * @param pszServer The server name. 1708 * @param pvUser The parameter block as opaque user data. 1707 1709 */ 1708 1710 static RTEXITCODE netperfClient(NETPERFPROTO enmProto, const char *pszServer, void *pvUser)
Note:
See TracChangeset
for help on using the changeset viewer.