VirtualBox

Changeset 64365 in vbox for trunk/src/VBox


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

ValidationKit/UsbTestService: Doxygen

Location:
trunk/src/VBox/ValidationKit/utils/usb
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestService.cpp

    r63567 r64365  
    397397 * @param   pszOpcode           The status opcode.  Exactly 8 chars long, padd
    398398 *                              with space.
    399  * @param   pszDetailsFmt       Longer description of the problem (format
    400  *                             string).
     399 * @param   rcReq               The status code of the request.
     400 * @param   pszDetailFmt        Longer description of the problem (format string).
    401401 * @param   va                  Format arguments.
    402402 */
     
    425425 * @param   pClient             The UTS client structure.
    426426 * @param   pPktHdr             The original packet (for future use).
    427  * @param   rcReq               Status code.
    428427 * @param   pszOpcode           The status opcode.  Exactly 8 chars long, padd
    429428 *                              with space.
    430  * @param   pszDetails          Longer description of the problem (format
    431  *                             string).
     429 * @param   rcReq               Status code.
     430 * @param   pszDetailFmt        Longer description of the problem (format string).
    432431 * @param   ...                 Format arguments.
    433432 */
     
    551550 * @returns IPRT status code.
    552551 * @retval  VERR_OUT_OF_RANGE if the parsed value exceeds the given maximum.
     552 * @param   pszVal              The value string.
    553553 * @param   uMax                The maximum value.
    554554 * @param   pu64                Where to store the parsed number on success.
     
    571571 * @returns IPRT status code.
    572572 * @retval  VERR_OUT_OF_RANGE if the parsed value exceeds the given range.
     573 * @param   pszVal              The value string.
    573574 * @param   iMin                The minimum value.
    574575 * @param   iMax                The maximum value.
     
    13921393 * @param   pszArgv0            The program name (argv[0]).
    13931394 */
    1394 static void utsUsage(PRTSTREAM pStrm, const char *argv0)
     1395static void utsUsage(PRTSTREAM pStrm, const char *pszArgv0)
    13951396{
    13961397    RTStrmPrintf(pStrm,
     
    14071408                 "      Default: %s \n"
    14081409                 ,
    1409                  argv0,
     1410                 pszArgv0,
    14101411                 g_szDefCdRomPath,
    14111412                 g_szDefScratchPath);
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadgetClassTest.cpp

    r62471 r64365  
    276276
    277277/**
    278  * @interface_method_impl{UTSGADGETCLASS,pfnInit}
     278 * @interface_method_impl{UTSGADGETCLASSIF,pfnInit}
    279279 */
    280280static DECLCALLBACK(int) utsGadgetClassTestInit(PUTSGADGETCLASSINT pClass, PCUTSGADGETCFGITEM paCfg)
     
    397397
    398398/**
    399  * @interface_method_impl{UTSGADGETCLASS,pfnTerm}
     399 * @interface_method_impl{UTSGADGETCLASSIF,pfnTerm}
    400400 */
    401401static DECLCALLBACK(void) utsGadgetClassTestTerm(PUTSGADGETCLASSINT pClass)
     
    409409
    410410/**
    411  * @interface_method_impl{UTSGADGETCLASS,pfnGetBusId}
     411 * @interface_method_impl{UTSGADGETCLASSIF,pfnGetBusId}
    412412 */
    413413static DECLCALLBACK(uint32_t) utsGadgetClassTestGetBusId(PUTSGADGETCLASSINT pClass)
     
    418418
    419419/**
    420  * @interface_method_impl{UTSGADGETCLASS,pfnConnect}
     420 * @interface_method_impl{UTSGADGETCLASSIF,pfnConnect}
    421421 */
    422422static DECLCALLBACK(int) utsGadgetClassTestConnect(PUTSGADGETCLASSINT pClass)
     
    431431
    432432/**
    433  * @interface_method_impl{UTSGADGETCLASS,pfnDisconnect}
     433 * @interface_method_impl{UTSGADGETCLASSIF,pfnDisconnect}
    434434 */
    435435static DECLCALLBACK(int) utsGadgetClassTestDisconnect(PUTSGADGETCLASSINT pClass)
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceInternal.h

    r62471 r64365  
    5656     * Print the usage information for this transport layer.
    5757     *
    58      * @param   pThis               Pointer to the transport layer descriptor.
    5958     * @param   pStream             The stream to print the usage info to.
    6059     *
     
    7372     * @retval  VERR_INVALID_PARAMETER if we should exit with a non-zero status.
    7473     *
    75      * @param   pThis               Pointer to the transport layer descriptor.
    7674     * @param   ch                  The short option value.
    7775     * @param   pVal                Pointer to the value union.
     
    116114     * @returns IPRT status code.
    117115     * @param   hPollSet            The poll set to add them to.
    118      * @paramm  pClient             The transport client structure.
     116     * @param   pClient             The transport client structure.
    119117     * @param   idStart             The handle ID to start at.
    120118     */
     
    126124     * @returns IPRT status code.
    127125     * @param   hPollSet            The poll set to remove from.
    128      * @paramm  pClient             The transport client structure.
     126     * @param   pClient             The transport client structure.
    129127     * @param   idStart             The handle ID to remove.
    130128     */
     
    142140     *          receive call.
    143141     *
    144      * @paramm  pClient             The transport client structure.
     142     * @param   pClient             The transport client structure.
    145143     * @param   ppPktHdr            Where to return the pointer to the packet we've
    146144     *                              read.  This is allocated from the heap using
     
    158156     * @retval  VERR_INTERRUPTED if interrupted before anything was sent.
    159157     *
    160      * @paramm  pClient             The transport client structure.
     158     * @param   pClient             The transport client structure.
    161159     * @param   pPktHdr             The packet to send.  The size is given by
    162160     *                              aligning the size in the header by
     
    168166     * Sends a babble packet and disconnects the client (if applicable).
    169167     *
    170      * @paramm  pClient             The transport client structure.
     168     * @param   pClient             The transport client structure.
    171169     * @param   pPktHdr             The packet to send.  The size is given by
    172170     *                              aligning the size in the header by
     
    179177     * Notification about a client HOWDY.
    180178     *
    181      * @paramm  pClient             The transport client structure.
     179     * @param   pClient             The transport client structure.
    182180     */
    183181    DECLR3CALLBACKMEMBER(void, pfnNotifyHowdy, (PUTSTRANSPORTCLIENT pClient));
     
    189187     * client at this point.
    190188     *
    191      * @paramm  pClient             The transport client structure.
     189     * @param   pClient             The transport client structure.
    192190     */
    193191    DECLR3CALLBACKMEMBER(void, pfnNotifyBye, (PUTSTRANSPORTCLIENT pClient));
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServicePlatform-linux.cpp

    r63567 r64365  
    282282    if (RT_SUCCESS(rc))
    283283    {
    284         const char *apszArg[] = { "num=20" }; /** @todo Make configurable from config. */
     284        const char *apszArg[] = { "num=20" }; /** @todo: Make configurable from config. */
    285285        rc = utsPlatformModuleLoad("dummy_hcd", &apszArg[0], RT_ELEMENTS(apszArg));
    286286        if (RT_SUCCESS(rc))
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