VirtualBox

Changeset 64366 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Oct 22, 2016 4:36:39 PM (8 years ago)
Author:
vboxsync
Message:

ValidationKit: Doxygen

Location:
trunk/src/VBox/ValidationKit/utils
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecService.cpp

    r62872 r64366  
    387387 * @param   pszOpcode           The status opcode.  Exactly 8 chars long, padd
    388388 *                              with space.
    389  * @param   pszDetailsFmt       Longer description of the problem (format
     389 * @param   pszDetailFmt        Longer description of the problem (format
    390390 *                              string).
    391391 * @param   va                  Format arguments.
     
    413413 * @param   pszOpcode           The status opcode.  Exactly 8 chars long, padd
    414414 *                              with space.
    415  * @param   pszDetail        Longer description of the problem (format
     415 * @param   pszDetailFmt        Longer description of the problem (format
    416416 *                              string).
    417417 * @param   ...                 Format arguments.
     
    15751575 * @param   fPollEvt            The event mask returned by RTPollNoResume.
    15761576 * @param   phPipeR             The pipe handle.
    1577  * @param   pu32Crc             The current CRC-32 of the stream. (In/Out)
     1577 * @param   puCrc32             The current CRC-32 of the stream. (In/Out)
    15781578 * @param   enmHndId            The handle ID.
    15791579 * @param   pszOpcode           The opcode for the data upload.
     
    17351735 * @param   fPollEvt            The event mask returned by RTPollNoResume.
    17361736 * @param   idPollHnd           The handle ID.
    1737  * @param   hStdInW             The standard input pipe.
     1737 * @param   phStdInW            The standard input pipe.
    17381738 * @param   pStdInBuf           The standard input buffer.
    17391739 */
     
    22402240 * @param   pTxsExec            The TXSEXEC instance.
    22412241 * @param   pszHowTo            How to set up this standard handle.
     2242 * @param   pszStdWhat          For what to setup redirection (stdin/stdout/stderr).
    22422243 * @param   fd                  Which standard handle it is (0 == stdin, 1 ==
    22432244 *                              stdout, 2 == stderr).
     
    28912892 * @param   argv                The argument vector.
    28922893 * @param   pfExit              For indicating exit when the exit code is zero.
     2894 * @param   pszUpgrading        The upgraded image path.
    28932895 */
    28942896static RTEXITCODE txsAutoUpdateStage2(int argc, char **argv, bool *pfExit, const char *pszUpgrading)
     
    31933195 * @param   pszArgv0            The program name (argv[0]).
    31943196 */
    3195 static void txsUsage(PRTSTREAM pStrm, const char *argv0)
     3197static void txsUsage(PRTSTREAM pStrm, const char *pszArgv0)
    31963198{
    31973199    RTStrmPrintf(pStrm,
     
    32063208                 "      Default: %s \n"
    32073209                 ,
    3208                  argv0,
     3210                 pszArgv0,
    32093211                 g_szDefCdRomPath,
    32103212                 g_szDefScratchPath);
  • trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecServiceInternal.h

    r62484 r64366  
    7777     * Print the usage information for this transport layer.
    7878     *
    79      * @param   pThis               Pointer to the transport layer descriptor.
    8079     * @param   pStream             The stream to print the usage info to.
    8180     *
     
    9493     * @retval  VERR_INVALID_PARAMETER if we should exit with a non-zero status.
    9594     *
    96      * @param   pThis               Pointer to the transport layer descriptor.
    9795     * @param   ch                  The short option value.
    9896     * @param   pVal                Pointer to the value union.
  • trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecServiceTcp.cpp

    r62673 r64366  
    347347
    348348/**
    349  * @interface_method_impl{TXSTRANSPORT,txsTcpNotifyReboot}
     349 * @interface_method_impl{TXSTRANSPORT,pfnNotifyReboot}
    350350 */
    351351static DECLCALLBACK(void) txsTcpNotifyReboot(void)
  • trunk/src/VBox/ValidationKit/utils/cpu/cidet-app.cpp

    r62673 r64366  
    5959 * restore the lower 32-bits of the base when saving and restoring the register).
    6060 */
    61 #if defined(RT_OS_DARWIN) && defined(RT_ARCH_AMD64)
     61#if (defined(RT_OS_DARWIN) && defined(RT_ARCH_AMD64)) || defined(DOXYGEN_RUNNING)
    6262# define CIDET_LEAVE_GS_ALONE
    6363#endif
     
    709709
    710710/**
    711  * @interface_method_impl{CIDETCORE::pfnReInitDataBuf}
     711 * @interface_method_impl{CIDETCORE,pfnReInitDataBuf}
    712712 */
    713713static DECLCALLBACK(bool) CidetAppCbReInitDataBuf(PCIDETCORE pThis, PCIDETBUF pBuf)
     
    763763
    764764/**
    765  * @interface_method_impl{CIDETCORE::pfnSetupDataBuf}
     765 * @interface_method_impl{CIDETCORE,pfnSetupDataBuf}
    766766 */
    767767static DECLCALLBACK(bool) CidetAppCbSetupDataBuf(PCIDETCORE pThis, PCIDETBUF pBuf, void const *pvSrc)
     
    787787
    788788/**
    789  * @interface_method_impl{CIDETCORE::pfnIsBufEqual}
     789 * @interface_method_impl{CIDETCORE,pfnIsBufEqual}
    790790 */
    791791static DECLCALLBACK(bool) CidetAppCbIsBufEqual(PCIDETCORE pThis, struct CIDETBUF *pBuf, void const *pvExpected)
     
    831831
    832832/**
    833  * @interface_method_impl{CIDETCORE::pfnReInitCodeBuf}
     833 * @interface_method_impl{CIDETCORE,pfnReInitCodeBuf}
    834834 */
    835835static DECLCALLBACK(bool) CidetAppCbReInitCodeBuf(PCIDETCORE pThis, PCIDETBUF pBuf)
     
    885885
    886886/**
    887  * @interface_method_impl{CIDETCORE::pfnSetupCodeBuf}
     887 * @interface_method_impl{CIDETCORE,pfnSetupCodeBuf}
    888888 */
    889889static DECLCALLBACK(bool) CidetAppCbSetupCodeBuf(PCIDETCORE pThis, PCIDETBUF pBuf, void const *pvInstr)
     
    10551055
    10561056/**
    1057  * @interface_method_impl{CIDETCORE::pfnExecute}
     1057 * @interface_method_impl{CIDETCORE,pfnExecute}
    10581058 */
    10591059static DECLCALLBACK(bool) CidetAppCbExecute(PCIDETCORE pThis)
     
    11051105
    11061106/**
    1107  * @interface_method_impl{CIDETCORE::pfnSetupBuf}
    1108  */
    1109 static DECLCALLBACK(void) CidetAppCbFailureV(PCIDETCORE pThis, const char *pszMsg, va_list va)
     1107 * @interface_method_impl{CIDETCORE,pfnFailure}
     1108 */
     1109static DECLCALLBACK(void) CidetAppCbFailureV(PCIDETCORE pThis, const char *pszFormat, va_list va)
    11101110{
    11111111    RT_NOREF_PV(pThis);
    1112     RTTestIFailedV(pszMsg, va);
     1112    RTTestIFailedV(pszFormat, va);
    11131113}
    11141114
  • trunk/src/VBox/ValidationKit/utils/misc/loadgeneratorR0.cpp

    r62484 r64366  
    7171 * Service request handler entry point.
    7272 *
    73  * @copydoc SUPR0SERVICEREQHANDLER
     73 * @copydoc FNSUPR0SERVICEREQHANDLER
    7474 */
    7575extern "C" DECLEXPORT(int) LoadGenR0ServiceReqHandler(PSUPDRVSESSION pSession, uint32_t uOperation,
  • trunk/src/VBox/ValidationKit/utils/network/NetPerf.cpp

    r62484 r64366  
    719719 *
    720720 * @param   pStats              The statistics.
     721 * @param   cbPacket            The packet size in bytes.
    721722 */
    722723static void netperfPrintLatencyStats(NETPERFSTATS const *pStats, uint32_t cbPacket)
     
    17041705 * @returns Exit code.
    17051706 * @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.
    17071709 */
    17081710static RTEXITCODE netperfClient(NETPERFPROTO enmProto, const char *pszServer, void *pvUser)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette