VirtualBox

Changeset 86328 in vbox for trunk


Ignore:
Timestamp:
Sep 28, 2020 4:26:47 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
140614
Message:

Debugger: Doxygen fix for r140613

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/dbg.h

    r86327 r86328  
    11151115     *
    11161116     * @returns nothing.
    1117      * @param   pDbgcIo     Pointer to the I/O structure supplied by the I/O provider.
    1118      */
    1119     DECLCALLBACKMEMBER(void, pfnDestroy, (PCDBGCIO pDbgcIo));
     1117     * @param   pIo         Pointer to the I/O structure supplied by the I/O provider.
     1118     */
     1119    DECLCALLBACKMEMBER(void, pfnDestroy, (PCDBGCIO pIo));
    11201120
    11211121    /**
     
    11251125     * @retval  true if there is input ready.
    11261126     * @retval  false if there not input ready.
    1127      * @param   pDbgcIo     Pointer to the I/O structure supplied by
     1127     * @param   pIo         Pointer to the I/O structure supplied by
    11281128     *                      the I/O provider. The backend can use this to find it's instance data.
    11291129     * @param   cMillies    Number of milliseconds to wait on input data.
    11301130     */
    1131     DECLCALLBACKMEMBER(bool, pfnInput, (PCDBGCIO pDbgcIo, uint32_t cMillies));
     1131    DECLCALLBACKMEMBER(bool, pfnInput, (PCDBGCIO pIo, uint32_t cMillies));
    11321132
    11331133    /**
     
    11351135     *
    11361136     * @returns VBox status code.
    1137      * @param   pDbgcIo     Pointer to the I/O structure supplied by
     1137     * @param   pIo         Pointer to the I/O structure supplied by
    11381138     *                      the I/O provider. The backend can use this to find it's instance data.
    11391139     * @param   pvBuf       Where to put the bytes we read.
     
    11431143     *                      successful return.
    11441144     */
    1145     DECLCALLBACKMEMBER(int, pfnRead, (PCDBGCIO pDbgcIo, void *pvBuf, size_t cbBuf, size_t *pcbRead));
     1145    DECLCALLBACKMEMBER(int, pfnRead, (PCDBGCIO pIo, void *pvBuf, size_t cbBuf, size_t *pcbRead));
    11461146
    11471147    /**
     
    11491149     *
    11501150     * @returns VBox status code.
    1151      * @param   pDbgcIo     Pointer to the I/O structure supplied by
     1151     * @param   pIo         Pointer to the I/O structure supplied by
    11521152     *                      the I/O provider. The backend can use this to find it's instance data.
    11531153     * @param   pvBuf       What to write.
     
    11561156     *                      If NULL the entire buffer must be successfully written.
    11571157     */
    1158     DECLCALLBACKMEMBER(int, pfnWrite, (PCDBGCIO pDbgcIo, const void *pvBuf, size_t cbBuf, size_t *pcbWritten));
     1158    DECLCALLBACKMEMBER(int, pfnWrite, (PCDBGCIO pIo, const void *pvBuf, size_t cbBuf, size_t *pcbWritten));
    11591159
    11601160    /**
     
    11621162     *
    11631163     * @returns nothing.
    1164      * @param   pDbgcIo     Pointer to the I/O structure supplied by
     1164     * @param   pIo         Pointer to the I/O structure supplied by
    11651165     *                      the I/O provider. The backend can use this to find it's instance data.
    11661166     * @param   fReady      Whether it's ready (true) or busy (false).
    11671167     */
    1168     DECLCALLBACKMEMBER(void, pfnSetReady, (PCDBGCIO pDbgcIo, bool fReady));
     1168    DECLCALLBACKMEMBER(void, pfnSetReady, (PCDBGCIO pIo, bool fReady));
    11691169
    11701170} DBGCIO;
Note: See TracChangeset for help on using the changeset viewer.

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