VirtualBox

Changeset 57978 in vbox


Ignore:
Timestamp:
Sep 30, 2015 7:39:30 PM (9 years ago)
Author:
vboxsync
Message:

IPRT: Doxygen warning fixes (last ones, hopefully).

Location:
trunk
Files:
14 edited

Legend:

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

    r57926 r57978  
    646646 * Checks the caller is the exclusive (write) owner of the critical section.
    647647 *
    648  * @retval  @c true if owner.
    649  * @retval  @c false if not owner.
     648 * @retval  true if owner.
     649 * @retval  false if not owner.
    650650 * @param   pThis           Pointer to the read/write critical section.
    651651 */
     
    705705 * Checks if a critical section is initialized or not.
    706706 *
    707  * @retval  @c true if initialized.
    708  * @retval  @c false if not initialized.
     707 * @retval  true if initialized.
     708 * @retval  false if not initialized.
    709709 * @param   pThis           Pointer to the read/write critical section.
    710710 */
  • trunk/include/iprt/list.h

    r57926 r57978  
    153153 * Checks if a node is the last element in the list.
    154154 *
    155  * @retval  @c true if the node is the last element in the list.
    156  * @retval  @c false otherwise
     155 * @retval  true if the node is the last element in the list.
     156 * @retval  false otherwise
    157157 *
    158158 * @param   pList               The list.
     
    164164 * Checks if a node is the first element in the list.
    165165 *
    166  * @retval  @c true if the node is the first element in the list.
    167  * @retval  @c false otherwise.
     166 * @retval  true if the node is the first element in the list.
     167 * @retval  false otherwise.
    168168 *
    169169 * @param   pList               The list.
     
    175175 * Checks if a type converted node is actually the dummy element (@a pList).
    176176 *
    177  * @retval  @c true if the node is the dummy element in the list.
    178  * @retval  @c false otherwise.
     177 * @retval  true if the node is the dummy element in the list.
     178 * @retval  false otherwise.
    179179 *
    180180 * @param   pList               The list.
     
    195195 * Checks if a list is empty.
    196196 *
    197  * @retval  @c true if the list is empty.
    198  * @retval  @c false otherwise.
     197 * @retval  true if the list is empty.
     198 * @retval  false otherwise.
    199199 *
    200200 * @param   pList               The list to check.
  • trunk/include/iprt/mem.h

    r57944 r57978  
    894894/**
    895895 * Fenced drop-in replacement for RTMemTmpFreeTag.
    896  * @copydoc RTMemTmpFreeTag
     896 * @copydoc RTMemTmpFree
    897897 */
    898898RTDECL(void)    RTMemEfTmpFreeNP(void *pv) RT_NO_THROW_PROTO;
  • trunk/include/iprt/uint128.h

    r57944 r57978  
    744744    else if (cBits < 128)
    745745        pValueResult->s.Hi &= (RT_BIT_64(cBits - 64) - 1);
    746 /** @todo #if ARCH_BITS >= 64 */
     746/** @todo \#if ARCH_BITS >= 64 */
    747747    return pValueResult;
    748748}
     
    841841{
    842842    RTUINT128U const InVal = *pValueResult;
    843 /** @todo #if ARCH_BITS >= 64 */
     843/** @todo \#if ARCH_BITS >= 64 */
    844844    if (cBits > 0)
    845845    {
  • trunk/src/VBox/Runtime/common/dbg/dbgmodcodeview.cpp

    r57944 r57978  
    801801 * @returns IPRT status code
    802802 * @param   pThis               The CodeView debug info reader instance.
    803  * @param   pbSymTab            The symbol table.
     803 * @param   pvSymTab            The symbol table.
    804804 * @param   cbSymTab            The size of the symbol table.
    805805 * @param   fFlags              Flags reserved for future exploits, MBZ.
     
    24692469 * @param   off                 The offset where to expect CV debug info.
    24702470 * @param   cb                  The number of bytes of debug info.
     2471 * @param   enmArch             The desired image architecture.
    24712472 * @param   pszFilename         The path to the file (for logging).
    24722473 */
     
    25492550 *
    25502551 * @returns status code.
    2551  * @param   pDbgMod             The debug module instance.  On success pvDbgPriv
     2552 * @param   pThis               The debug module instance.  On success pvDbgPriv
    25522553 *                              will point to a valid RTDBGMODCV.
    25532554 * @param   enmFileType         The kind of file this is we're probing.
  • trunk/src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp

    r57358 r57978  
    515515
    516516/** @interface_method_impl{RTDBGMODVTIMG,pfnRvaToSegOffset} */
    517 static DECLCALLBACK(int) rtDbgModDeferredImg_RvaToSegOffset(PRTDBGMODINT pMod, RTLDRADDR uRva,
     517static DECLCALLBACK(int) rtDbgModDeferredImg_RvaToSegOffset(PRTDBGMODINT pMod, RTLDRADDR Rva,
    518518                                                            PRTDBGSEGIDX piSeg, PRTLDRADDR poffSeg)
    519519{
    520520    int rc = rtDbgModDeferredDoIt(pMod, false /*fForceRetry*/);
    521521    if (RT_SUCCESS(rc))
    522         rc = pMod->pImgVt->pfnRvaToSegOffset(pMod, uRva, piSeg, poffSeg);
     522        rc = pMod->pImgVt->pfnRvaToSegOffset(pMod, Rva, piSeg, poffSeg);
    523523    return rc;
    524524}
  • trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp

    r57944 r57978  
    21372137 * Check if the cursor is at the end of the current DWARF unit.
    21382138 *
    2139  * @retval  @c true if at the end or a cursor error is pending.
    2140  * @retval  @c false if not.
     2139 * @retval  true if at the end or a cursor error is pending.
     2140 * @retval  false if not.
    21412141 * @param   pCursor             The cursor.
    21422142 */
     
    21662166 * processing).
    21672167 *
    2168  * @retval  @c true if at the end or a cursor error is pending.
    2169  * @retval  @c false if not.
     2168 * @retval  true if at the end or a cursor error is pending.
     2169 * @retval  false if not.
    21702170 * @param   pCursor             The cursor.
    21712171 */
     
    40154015 *
    40164016 * @param   pThis               The DWARF instance.
    4017  * @param   pParent             The parent DIE.
     4017 * @param   pParentDie          The parent DIE.
    40184018 */
    40194019static void rtDwarfInfo_FreeChildren(PRTDBGMODDWARF pThis, PRTDWARFDIE pParentDie)
  • trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp

    r57944 r57978  
    376376/**
    377377 * Implements mapping a glob variable to multiple environment variable values.
     378 *
     379 * @param   a_Name              The variable name.
    378380 * @param   a_apszVarNames      Assumes to be a global variable that RT_ELEMENTS
    379381 *                              works correctly on.
     382 * @param   a_cbMaxValue        The max expected value size.
    380383 */
    381384#define RTPATHMATCHVAR_MULTIPLE_ENVVARS(a_Name, a_apszVarNames, a_cbMaxValue) \
     
    451454
    452455/**
    453  * @interface_method_impl{RTPATHMATCHVAR,pfnQuery, Enumerates the PATH}.
     456 * @interface_method_impl{RTPATHMATCHVAR,pfnQuery, Enumerates the PATH}
    454457 */
    455458static DECLCALLBACK(int) rtPathVarQuery_Path(uint32_t iItem, char *pszBuf, size_t cbBuf, size_t *pcchValue,
     
    996999 * @param   pchPattern          The pattern to compile.
    9971000 * @param   cchPattern          The length of the pattern.
     1001 * @param   fIgnoreCase         Whether to ignore case or not when doing the
     1002 *                              actual matching later on.
    9981003 * @param   pAllocator          Pointer to the instruction allocator & result
    9991004 *                              array.  The compiled "program" starts at
     
    16591664 * @param   pGlob               The glob instance data.
    16601665 * @param   offPath             The current path offset/length.
    1661  * @param   iComp               The current component.
     1666 * @param   iStarStarComp       The star-star component index.
     1667 * @param   offStarStarPath     The offset of the star-star component in the
     1668 *                              pattern path.
    16621669 */
    16631670DECL_NO_INLINE(static, int) rtPathGlobExecRecursiveStarStar(PRTPATHGLOB pGlob, size_t offPath, uint32_t iStarStarComp,
  • trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp

    r57358 r57978  
    136136 * Tries a set against the current kernel.
    137137 *
    138  * @retval @c true if it matched up, global variables are updated.
    139  * @retval @c false otherwise (no globals updated).
     138 * @retval true if it matched up, global variables are updated.
     139 * @retval false otherwise (no globals updated).
    140140 * @param   pSet                The data set.
    141141 * @param   pbPrcb              Pointer to the processor control block.
  • trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp

    r57358 r57978  
    303303 *
    304304 * @returns VINF_SUCCESS.
    305  * @param   pfnWorker   The callback.
    306  * @param   pvUser1     User argument 1.
    307  * @param   pvUser2     User argument 2.
    308  * @param   idCpu       First CPU to match, ultimately specific to the
    309  *                      pfnNativeWrapper used.
    310  * @param   idCpu2      Second CPU to match, ultimately specific to the
    311  *                      pfnNativeWrapper used.
    312  * @param   pcHits      Where to return the number of this. Optional.
     305 * @param   pfnWorker           The callback.
     306 * @param   pvUser1             User argument 1.
     307 * @param   pvUser2             User argument 2.
     308 * @param   pfnNativeWrapper    The wrapper between the NT and IPRT callbacks.
     309 * @param   idCpu               First CPU to match, ultimately specific to the
     310 *                              pfnNativeWrapper used.
     311 * @param   idCpu2              Second CPU to match, ultimately specific to the
     312 *                              pfnNativeWrapper used.
     313 * @param   pcHits              Where to return the number of this. Optional.
    313314 */
    314315static int rtMpCallUsingBroadcastIpi(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2,
  • trunk/src/VBox/Runtime/r0drv/nt/ntBldSymDb.cpp

    r57358 r57978  
    174174 * Returns the name we wish to use in the C code.
    175175 * @returns Member name.
    176  * @param   pStruct             The member descriptor.
     176 * @param   pMember             The member descriptor.
    177177 */
    178178static const char *figureCMemberName(MYMEMBER const *pMember)
     
    339339 * @returns Fully complained exit code.
    340340 * @param   pOsVerInfo      The OS version info.
     341 * @param   enmArch         The NT architecture of the incoming PDB.
     342 * @param   pszPdb          The PDB file name.
    341343 */
    342344static RTEXITCODE saveStructures(PRTNTSDBOSVER pOsVerInfo, MYARCH enmArch, const char *pszPdb)
     
    987989 * @param   cchDir              The length of pszDir in pszDir.
    988990 * @param   pDirEntry           Pointer to the directory buffer.
     991 * @param   iLogDepth           The logging depth.
    989992 */
    990993static RTEXITCODE processDirSub(char *pszDir, size_t cchDir, PRTDIRENTRYEX pDirEntry, int iLogDepth)
  • trunk/src/VBox/Runtime/r3/nt/pathint-nt.cpp

    r57358 r57978  
    432432 * @param   pszPath             The UTF-8 path.
    433433 * @param   fDesiredAccess      See NtCreateFile.
    434  * @param   fFileAttribs        See NtCreateFile.
    435434 * @param   fShareAccess        See NtCreateFile.
    436  * @param   fCreateDisposition  See NtCreateFile.
    437435 * @param   fCreateOptions      See NtCreateFile.
    438436 * @param   fObjAttribs         The OBJECT_ATTRIBUTES::Attributes value, see
  • trunk/src/VBox/Runtime/r3/socket.cpp

    r57358 r57978  
    282282 * @param   pAddr               Pointer to the generic IPRT network address.
    283283 * @param   pDst                The source address.
    284  * @param   cbSrc               The size of the source address.
     284 * @param   cbDst               The size of the source address.
    285285 * @param   pcbAddr             Where to store the size of the returned address.
    286286 *                              Optional
  • trunk/src/VBox/Runtime/r3/win/process-win.cpp

    r57916 r57978  
    111111 * caller must also check if any of the necessary APIs are NULL pointers.
    112112 * @{ */
    113 /** Init once structure for run-as-user functions we need.. */
     113/** Init once structure for run-as-user functions we need. */
    114114static RTONCE                           g_rtProcWinResolveOnce          = RTONCE_INITIALIZER;
    115115/* kernel32.dll: */
     
    11541154 *
    11551155 * @returns true on success, false on failure.
    1156  * @param   hWinStation         The window station.
     1156 * @param   hDesktop            The desktop handle.
    11571157 * @param   pSid                The SID.
    11581158 */
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