VirtualBox

Changeset 99739 in vbox for trunk/include/iprt


Ignore:
Timestamp:
May 11, 2023 1:01:08 AM (22 months ago)
Author:
vboxsync
Message:

*: doxygen corrections (mostly about removing @returns from functions returning void).

Location:
trunk/include/iprt
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/armv8.h

    r99736 r99739  
    160160                                                     | ARMV8_AARCH64_SYSREG_CRN_MASK | ARMV8_AARCH64_SYSREG_CRN_MASK \
    161161                                                     | ARMV8_AARCH64_SYSREG_OP2_MASK)
     162/** @} */
    162163
    163164/** @name Mapping of op0:op1:CRn:CRm:op2 to a system register ID. This is
  • trunk/include/iprt/asm-amd64-x86.h

    r98103 r99739  
    21902190 * Writes a machine specific register.
    21912191 *
    2192  * @returns Register content.
    21932192 * @param   uRegister   Register to write to.
    21942193 * @param   u64Val      Value to write.
     
    22642263 * Writes a machine specific register, extended version (for AMD).
    22652264 *
    2266  * @returns Register content.
    22672265 * @param   uRegister   Register to write to.
    22682266 * @param   uXDI        RDI/EDI value.
  • trunk/include/iprt/asm.h

    r99563 r99739  
    37093709 * Atomically writes a size_t value, ordered.
    37103710 *
    3711  * @returns nothing.
    37123711 * @param   pcb     Pointer to the size_t variable to write.
    37133712 * @param   cb      The value to assign to *pcb.
     
    37313730 * Atomically writes a size_t value, unordered.
    37323731 *
    3733  * @returns nothing.
    37343732 * @param   pcb     Pointer to the size_t variable to write.
    37353733 * @param   cb      The value to assign to *pcb.
  • trunk/include/iprt/cpp/restclient.h

    r98103 r99739  
    532532    /**
    533533     * Called after status, headers and body all have been presented.
    534      *
    535      * @returns IPRT status code.
    536534     */
    537535    virtual void receiveFinal() RT_NOEXCEPT;
  • trunk/include/iprt/dvm.h

    r98103 r99739  
    390390 * This overwrites any other callback set previously.
    391391 *
    392  * @returns nothing.
    393392 * @param   hVol                   The volume handle.
    394393 * @param   pfnQueryBlockStatus    The callback to set. Can be NULL to disable
  • trunk/include/iprt/ioqueue.h

    r98103 r99739  
    140140     * associated resources.
    141141     *
    142      * @returns nothing.
    143142     * @param   hIoQueueProv    The I/O queue provider instance to destroy.
    144143     */
  • trunk/include/iprt/ldr.h

    r98103 r99739  
    529529 * associated with it (@a pvUser).
    530530 *
    531  * @returns IPRT status code
    532531 * @param   pvUser      The user parameter.
    533532 * @param   cbImage     The image size.
  • trunk/include/iprt/list-off32.h

    r98103 r99739  
    485485 * List concatenation.
    486486 *
    487  * @returns nothing.
    488487 * @param   pListDst            The destination list.
    489488 * @param   pListSrc            The source list to concatenate.
  • trunk/include/iprt/list.h

    r98103 r99739  
    533533 * List concatenation.
    534534 *
    535  * @returns nothing.
    536535 * @param   pListDst            The destination list.
    537536 * @param   pListSrc            The source list to concatenate.
  • trunk/include/iprt/memsafer.h

    r98103 r99739  
    245245 * RTMemWipeThorougly.
    246246 *
    247  * @returns Pointer to the allocated memory.
    248247 * @param   pv          The allocation.
    249248 * @param   cb          The allocation size.
  • trunk/include/iprt/sg.h

    r98103 r99739  
    196196 * Initialize a S/G buffer structure.
    197197 *
    198  * @returns nothing.
    199198 * @param   pSgBuf    Pointer to the S/G buffer to initialize.
    200199 * @param   paSegs    Pointer to the start of the segment array.
     
    210209 * Resets the internal buffer position of the S/G buffer to the beginning.
    211210 *
    212  * @returns nothing.
    213211 * @param   pSgBuf    The S/G buffer to reset.
    214212 */
     
    218216 * Clones a given S/G buffer.
    219217 *
    220  * @returns nothing.
    221218 * @param   pSgBufNew    The new S/G buffer to clone to.
    222219 * @param   pSgBufOld    The source S/G buffer to clone from.
  • trunk/include/iprt/string.h

    r98103 r99739  
    324324 * Free string allocated by any of the non-UCS-2 string functions.
    325325 *
    326  * @returns iprt status code.
    327326 * @param   pszString      Pointer to buffer with string to free.
    328327 *                         NULL is accepted.
  • trunk/include/iprt/thread.h

    r98103 r99739  
    688688 * spinlocks are fine though.
    689689 *
    690  * @returns IPRT status code.
    691690 * @param   enmEvent    The thread-context event.  Please quitely ignore unknown
    692691 *                      events, we may add more (thread exit, ++) later.
  • trunk/include/iprt/time.h

    r98103 r99739  
    347347 * Gives the time in seconds and nanoseconds.
    348348 *
    349  * @returns pTime.
    350349 * @param   pTime           The time spec to interpret.
    351350 * @param   *pi32Seconds    Where to store the time period in seconds.
  • trunk/include/iprt/tracelog.h

    r98103 r99739  
    602602 * Frees all resources of the given array of event headers as allocated by RTTraceLogRdrEvtMapToStruct().
    603603 *
    604  * @returns nothing.
    605604 * @param   paEvtHdr            Pointer to the array of events as returned by RTTraceLogRdrEvtMapToStruct().
    606605 * @param   cEvts               Number of events as returned by RTTraceLogRdrEvtMapToStruct().
     
    612611 * Frees a previously created iterator.
    613612 *
    614  * @returns nothing.
    615613 * @param   hIt                 The iterator handle to free.
    616614 */
  • trunk/include/iprt/utf16.h

    r98103 r99739  
    172172 * RTLatin1ToUtf16(), RTLatin1ToUtf16Ex(), RTUtf16Dup() or RTUtf16DupEx().
    173173 *
    174  * @returns iprt status code.
    175174 * @param   pwszString      The UTF-16 string to free. NULL is accepted.
    176175 */
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