VirtualBox

Changeset 58170 in vbox for trunk/src/VBox/Devices


Ignore:
Timestamp:
Oct 12, 2015 9:27:14 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103282
Message:

doxygen: fixes.

Location:
trunk/src/VBox/Devices
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DevIchHda.cpp

    r58132 r58170  
    33573357 * Reset notification.
    33583358 *
    3359  * @returns VBox status.
     3359 * @returns VBox status code.
    33603360 * @param   pDevIns     The device instance data.
    33613361 *
  • trunk/src/VBox/Devices/EFI/DevEFI.cpp

    r57713 r58170  
    18991899 * Parse EFI ROM headers and find entry points.
    19001900 *
    1901  * @returns VBox status.
     1901 * @returns VBox status code.
    19021902 * @param   pThis    The device instance data.
    19031903 */
     
    19351935 * Load EFI ROM file into the memory.
    19361936 *
    1937  * @returns VBox status.
     1937 * @returns VBox status code.
    19381938 * @param   pThis       The device instance data.
    19391939 * @param   pCfg        Configuration node handle for the device.
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp

    r58148 r58170  
    44454445 * Power On notification.
    44464446 *
    4447  * @returns VBox status.
     4447 * @returns VBox status code.
    44484448 * @param   pDevIns     The device instance data.
    44494449 *
  • trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp

    r57801 r58170  
    24252425/** The guest submitted a command buffer. Verify the buffer size and invoke corresponding handler.
    24262426 *
    2427  * @return VBox status.
     2427 * @return VBox status code.
    24282428 * @param pvHandler      The VBVA channel context.
    24292429 * @param u16ChannelInfo Command code.
  • trunk/src/VBox/Devices/Input/DevPS2.cpp

    r58132 r58170  
    14991499 * Reset notification.
    15001500 *
    1501  * @returns VBox status.
     1501 * @returns VBox status code.
    15021502 * @param   pDevIns     The device instance data.
    15031503 */
  • trunk/src/VBox/Devices/Input/DrvKeyboardQueue.cpp

    r57358 r58170  
    331331 * Power On notification.
    332332 *
    333  * @returns VBox status.
     333 * @returns VBox status code.
    334334 * @param   pDrvIns     The drive instance data.
    335335 */
     
    344344 * Reset notification.
    345345 *
    346  * @returns VBox status.
     346 * @returns VBox status code.
    347347 * @param   pDrvIns     The drive instance data.
    348348 */
     
    357357 * Suspend notification.
    358358 *
    359  * @returns VBox status.
     359 * @returns VBox status code.
    360360 * @param   pDrvIns     The drive instance data.
    361361 */
     
    370370 * Resume notification.
    371371 *
    372  * @returns VBox status.
     372 * @returns VBox status code.
    373373 * @param   pDrvIns     The drive instance data.
    374374 */
  • trunk/src/VBox/Devices/Input/DrvMouseQueue.cpp

    r57358 r58170  
    259259 * Power On notification.
    260260 *
    261  * @returns VBox status.
     261 * @returns VBox status code.
    262262 * @param   pDrvIns     The drive instance data.
    263263 */
     
    272272 * Reset notification.
    273273 *
    274  * @returns VBox status.
     274 * @returns VBox status code.
    275275 * @param   pDrvIns     The drive instance data.
    276276 */
     
    285285 * Suspend notification.
    286286 *
    287  * @returns VBox status.
     287 * @returns VBox status code.
    288288 * @param   pDrvIns     The drive instance data.
    289289 */
     
    298298 * Resume notification.
    299299 *
    300  * @returns VBox status.
     300 * @returns VBox status code.
    301301 * @param   pDrvIns     The drive instance data.
    302302 */
  • trunk/src/VBox/Devices/Network/DevE1000.cpp

    r57358 r58170  
    73127312 * We need to free non-VM resources only.
    73137313 *
    7314  * @returns VBox status.
     7314 * @returns VBox status code.
    73157315 * @param   pDevIns     The device instance data.
    73167316 * @thread  EMT
  • trunk/src/VBox/Devices/Network/DevINIP.cpp

    r57393 r58170  
    575575 * resources can be freed correctly.
    576576 *
    577  * @returns VBox status.
     577 * @returns VBox status code.
    578578 * @param   pDevIns     The device instance data.
    579579 */
  • trunk/src/VBox/Devices/Storage/DevAHCI.cpp

    r58132 r58170  
    233233 * Data processing callback
    234234 *
    235  * @returns VBox status.
     235 * @returns VBox status code.
    236236 * @param   pAhciReq    The task state.
    237237 * @param   ppvProc     Where to store the pointer to the buffer holding the processed data on success.
  • trunk/src/VBox/Devices/Storage/DevATA.cpp

    r58132 r58170  
    66056605 * Resume notification.
    66066606 *
    6607  * @returns VBox status.
     6607 * @returns VBox status code.
    66086608 * @param   pDevIns     The device instance data.
    66096609 */
     
    70377037 * Power Off notification.
    70387038 *
    7039  * @returns VBox status.
     7039 * @returns VBox status code.
    70407040 * @param   pDevIns     The device instance data.
    70417041 */
     
    70507050 * Suspend notification.
    70517051 *
    7052  * @returns VBox status.
     7052 * @returns VBox status code.
    70537053 * @param   pDevIns     The device instance data.
    70547054 */
     
    70877087 * Common reset worker for ataR3Reset and ataR3Construct.
    70887088 *
    7089  * @returns VBox status.
     7089 * @returns VBox status code.
    70907090 * @param   pDevIns     The device instance data.
    70917091 * @param   fConstruct  Indicates who is calling.
  • trunk/src/VBox/Devices/Storage/DrvBlock.cpp

    r58132 r58170  
    833833 * Reset notification.
    834834 *
    835  * @returns VBox status.
     835 * @returns VBox status code.
    836836 * @param   pDevIns     The driver instance data.
    837837 */
  • trunk/src/VBox/Devices/USB/DevOHCI.cpp

    r57358 r58170  
    56255625 * Reset notification.
    56265626 *
    5627  * @returns VBox status.
     5627 * @returns VBox status code.
    56285628 * @param   pDevIns     The device instance data.
    56295629 */
     
    56485648 * Resume notification.
    56495649 *
    5650  * @returns VBox status.
     5650 * @returns VBox status code.
    56515651 * @param   pDevIns     The device instance data.
    56525652 */
     
    57285728 * Relocate device instance data.
    57295729 *
    5730  * @returns VBox status.
     5730 * @returns VBox status code.
    57315731 * @param   pDevIns     The device instance data.
    57325732 * @param   offDelta    The relocation delta.
     
    57465746 * resources can be freed correctly.
    57475747 *
    5748  * @returns VBox status.
     5748 * @returns VBox status code.
    57495749 * @param   pDevIns     The device instance data.
    57505750 */
  • trunk/src/VBox/Devices/USB/usbip/USBProxyDevice-usbip.cpp

    r57522 r58170  
    731731 * Connects to the USB/IP host and claims the device given in the proxy device data.
    732732 *
    733  * @returns VBox status.
     733 * @returns VBox status code.
    734734 * @param   pProxyDevUsbIp    The USB/IP proxy device data.
    735735 */
  • trunk/src/VBox/Devices/VirtIO/Virtio.cpp

    r57901 r58170  
    883883 * We need to free non-VM resources only.
    884884 *
    885  * @returns VBox status.
     885 * @returns VBox status code.
    886886 * @param   pState      The device state structure.
    887887 */
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