VirtualBox

Changeset 25645 in vbox for trunk/src/VBox/Runtime/common


Ignore:
Timestamp:
Jan 5, 2010 9:29:31 AM (15 years ago)
Author:
vboxsync
Message:

IPRT,DoxyFile.Core: Mopped up the errors in the IPRT doxygen run.

Location:
trunk/src/VBox/Runtime/common
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/checksum/ipv4.cpp

    r21337 r25645  
    228228 *
    229229 * @returns 32-bit intermediary checksum value.
    230  * @param   pUdpHdr         Pointer to the TCP header to checksum, network endian (big).
    231  *                          Assums the caller has already validate it and made sure the
    232  *                          entire header is present.
     230 * @param   pTcpHdr         Pointer to the TCP header to checksum, network
     231 *                          endian (big). Assums the caller has already validate
     232 *                          it and made sure the entire header is present.
    233233 * @param   u32Sum          The 32-bit intermediate checksum value.
    234234 */
     
    274274 *
    275275 * @returns 32-bit intermediary checksum value.
    276  * @param   pUdpHdr         Pointer to the TCP header to checksum, network endian (big).
    277  *                          Assums the caller has already validate it and made sure the
    278  *                          entire header is present.
     276 * @param   pTcpHdr         Pointer to the TCP header to checksum, network
     277 *                          endian (big). Assums the caller has already validate
     278 *                          it and made sure the entire header is present.
    279279 * @param   u32Sum          The 32-bit intermediate checksum value.
    280280 */
     
    290290 *
    291291 * @returns 32-bit intermediary checksum value.
    292  * @param   pUdpHdr         Pointer to the UDP header to checksum, network endian (big).
     292 * @param   pvData          Pointer to the data that should be checksummed.
     293 * @param   cbData          The number of bytes to checksum.
    293294 * @param   u32Sum          The 32-bit intermediate checksum value.
    294295 * @param   pfOdd           This is used to keep track of odd bits, initialize to false
     
    342343 *
    343344 * @returns 32-bit intermediary checksum value.
    344  * @param   pUdpHdr         Pointer to the UDP header to checksum, network endian (big).
     345 * @param   pvData          The data bits to checksum.
     346 * @param   cbData          The number of bytes to checksum.
    345347 * @param   u32Sum          The 32-bit intermediate checksum value.
    346348 * @param   pfOdd           This is used to keep track of odd bits, initialize to false
  • trunk/src/VBox/Runtime/common/dbg/dbgas.cpp

    r23022 r25645  
    11671167 * Adjusts the address to correspond to the mapping of the module/segment.
    11681168 *
    1169  * @param   pSymbol         The returned symbol info.
    1170  * @param   pMap            The mapping record.
     1169 * @param   pAddr           The address to adjust (in/out).
     1170 * @param   iSeg            The related segment.
    11711171 * @param   hDbgMod         The module handle.
    11721172 * @param   MapAddr         The mapping address.
     
    12591259 * @param   cb              The size of the symbol.
    12601260 * @param   fFlags          Symbol flags.
     1261 * @param   piOrdinal       Where to return the symbol ordinal on success. If
     1262 *                          the interpreter doesn't do ordinals, this will be set to
     1263 *                          UINT32_MAX. Optional
    12611264 */
    12621265RTDECL(int) RTDbgAsSymbolAdd(RTDBGAS hDbgAs, const char *pszSymbol, RTUINTPTR Addr, RTUINTPTR cb, uint32_t fFlags, uint32_t *piOrdinal)
     
    13431346 * @param   poffDisp        Where to return the distance between the symbol
    13441347 *                          and address. Optional.
    1345  * @param   ppSymbol        Where to return the pointer to the allocated
    1346  *                          symbol info. Always set. Free with RTDbgSymbolFree.
     1348 * @param   ppSymInfo       Where to return the pointer to the allocated symbol
     1349 *                          info. Always set. Free with RTDbgSymbolFree.
    13471350 * @param   phMod           Where to return the module handle. Optional.
    13481351 */
    1349 RTDECL(int) RTDbgAsSymbolByAddrA(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymbol, PRTDBGMOD phMod)
     1352RTDECL(int) RTDbgAsSymbolByAddrA(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo, PRTDBGMOD phMod)
    13501353{
    13511354    /*
     
    13691372     * Forward the call.
    13701373     */
    1371     int rc = RTDbgModSymbolByAddrA(hMod, iSeg, offSeg, poffDisp, ppSymbol);
     1374    int rc = RTDbgModSymbolByAddrA(hMod, iSeg, offSeg, poffDisp, ppSymInfo);
    13721375    if (RT_SUCCESS(rc))
    1373         rtDbgAsAdjustSymbolValue(*ppSymbol, hMod, MapAddr, iSeg);
     1376        rtDbgAsAdjustSymbolValue(*ppSymInfo, hMod, MapAddr, iSeg);
    13741377    if (phMod)
    13751378        *phMod = hMod;
  • trunk/src/VBox/Runtime/common/dbg/dbgmod.cpp

    r22114 r25645  
    12911291 *                              specified address and the returned symbol.
    12921292 *                              Optional.
    1293  * @param   pSymInfo            Where to store the symbol information.
     1293 * @param   pLineInfo           Where to store the line number information.
    12941294 */
    12951295RTDECL(int) RTDbgModLineByAddr(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGLINE pLineInfo)
  • trunk/src/VBox/Runtime/common/dbg/dbgmodcontainer.cpp

    r22111 r25645  
    530530
    531531
    532 /** @copydoc RTDBGMODVTDBG::pfnRvaToSegOff */
     532/** @copydoc RTDBGMODVTDBG::pfnImageSize */
    533533static DECLCALLBACK(RTUINTPTR) rtDbgModContainer_ImageSize(PRTDBGMODINT pMod)
    534534{
  • trunk/src/VBox/Runtime/common/dbg/dbgmodnm.cpp

    r21337 r25645  
    162162
    163163
    164 /** @copydoc RTDBGMODVTDBG::pfnRvaToSegOff */
     164/** @copydoc RTDBGMODVTDBG::pfnImageSize */
    165165static DECLCALLBACK(RTUINTPTR) rtDbgModNm_ImageSize(PRTDBGMODINT pMod)
    166166{
  • trunk/src/VBox/Runtime/common/misc/cache.cpp

    r24181 r25645  
    5050 *
    5151 * @returns iprt status code.
    52  * @param   ppObjCache    Where to store the pointer to the created cache.
    53  * @param   cElements     Number of elements the cache can hold.
    54  *                        0 if unlimited size.
    55  * @param   cbElement     Size of one element in bytes
    56  * @param   fProt         Protection flags for protecting cache against concurrent access
    57  *                        from different threads.
    58  *                        RTOBJCACHE_PROTECT_REQUESTER to protect the request function.
    59  *                        RTOBJCACHE_PROTECT_INSERT    to protect the insert function.
     52 * @param   ppCache         Where to store the pointer to the created cache.
     53 * @param   cElements       Number of elements the cache can hold.
     54 *                          0 if unlimited size.
     55 * @param   cbElement       Size of one element in bytes
     56 * @param   fProt           Protection flags for protecting cache against
     57 *                          concurrent access from different threads.
     58 *                          RTOBJCACHE_PROTECT_REQUEST  to protect the request function.
     59 *                          RTOBJCACHE_PROTECT_INSERT    to protect the insert function.
    6060 */
    6161RTDECL(int) RTCacheCreate(PRTOBJCACHE *ppCache, uint32_t cElements, size_t cbElement, uint32_t fProt)
  • trunk/src/VBox/Runtime/common/misc/lockvalidator.cpp

    r25638 r25645  
    188188 * Launch a simple assertion like complaint w/ panic.
    189189 *
    190  * @param   RT_SRC_POS_DECL     Where from.
     190 * @param   pszFile             Where from - file.
     191 * @param   iLine               Where from - line.
     192 * @param   pszFunction         Where from - function.
    191193 * @param   pszWhat             What we're complaining about.
    192194 * @param   ...                 Format arguments.
     
    211213 *
    212214 * @param   pszPrefix           Message prefix.
    213  * @param   Rec                 The lock record we're working on.
    214  * @param   pszPrefix           Message suffix.
     215 * @param   pRec                The lock record we're working on.
     216 * @param   pszSuffix           Message suffix.
    215217 */
    216218static void rtLockValidatorComplainAboutLock(const char *pszPrefix, PRTLOCKVALRECUNION pRec, const char *pszSuffix)
  • trunk/src/VBox/Runtime/common/misc/s3.cpp

    r23973 r25645  
    863863}
    864864
    865 RTR3DECL(int) RTS3GetKey(RTS3 hS3, const char* pszBucketName, const char* pszKeyName, const char* pszFileName)
     865RTR3DECL(int) RTS3GetKey(RTS3 hS3, const char *pszBucketName, const char *pszKeyName, const char *pszFilename)
    866866{
    867867    PRTS3INTERNAL pS3Int = hS3;
     
    873873    /* Open the file */
    874874    RTFILE hFile;
    875     int rc = RTFileOpen(&hFile, pszFileName, RTFILE_O_CREATE | RTFILE_O_WRITE | RTFILE_O_DENY_NONE);
     875    int rc = RTFileOpen(&hFile, pszFilename, RTFILE_O_CREATE | RTFILE_O_WRITE | RTFILE_O_DENY_NONE);
    876876    if (RT_FAILURE(rc))
    877877        return rc;
     
    916916    /* If there was an error delete the newly created file */
    917917    if (RT_FAILURE(rc))
    918         RTFileDelete(pszFileName);
     918        RTFileDelete(pszFilename);
    919919
    920920    return rc;
    921921}
    922922
    923 RTR3DECL(int) RTS3PutKey(RTS3 hS3, const char* pszBucketName, const char* pszKeyName, const char* pszFileName)
     923RTR3DECL(int) RTS3PutKey(RTS3 hS3, const char *pszBucketName, const char *pszKeyName, const char *pszFilename)
    924924{
    925925    PRTS3INTERNAL pS3Int = hS3;
     
    931931    /* Open the file */
    932932    RTFILE hFile;
    933     int rc = RTFileOpen(&hFile, pszFileName, RTFILE_O_OPEN | RTFILE_O_READ | RTFILE_O_DENY_NONE);
     933    int rc = RTFileOpen(&hFile, pszFilename, RTFILE_O_OPEN | RTFILE_O_READ | RTFILE_O_DENY_NONE);
    934934    if (RT_FAILURE(rc))
    935935        return rc;
  • trunk/src/VBox/Runtime/common/misc/thread.cpp

    r25638 r25645  
    779779 * @param   enmType     See RTThreadCreate.
    780780 * @param   fFlags      See RTThreadCreate.
    781  * @param   pszName     Thread name format.
     781 * @param   pszNameFmt  Thread name format.
    782782 * @param   va          Format arguments.
    783783 */
     
    804804 * @param   enmType     See RTThreadCreate.
    805805 * @param   fFlags      See RTThreadCreate.
    806  * @param   pszName     Thread name format.
     806 * @param   pszNameFmt  Thread name format.
    807807 * @param   ...         Format arguments.
    808808 */
  • trunk/src/VBox/Runtime/common/path/RTPathParse.cpp

    r21673 r25645  
    4646 *
    4747 * @param   pszPath     Path to find filename in.
    48  * @param   pcbDir      Where to put the length of the directory component.
    49  *                      If no directory, this will be 0. Optional.
     48 * @param   pcchDir     Where to put the length of the directory component. If
     49 *                      no directory, this will be 0. Optional.
    5050 * @param   poffName    Where to store the filename offset.
    5151 *                      If empty string or if it's ending with a slash this
     
    5454 *                      If empty string or if it's ending with a slash this
    5555 *                      will be set to -1. Optional.
    56  * @param   pfFlags     Where to set flags returning more information about
    57  *                      the path. For the future. Optional.
    5856 */
    5957RTDECL(size_t) RTPathParse(const char *pszPath, size_t *pcchDir, ssize_t *poffName, ssize_t *poffSuff)
  • trunk/src/VBox/Runtime/common/string/strformatrt.cpp

    r25596 r25645  
    8282 *      - \%RHx             - Takes a #RTHCUINT or #RTHCINT value, formatting it as hex.
    8383 *      - \%RRv             - Takes a #RTRCPTR, #RTRCINTPTR or #RTRCUINTPTR value.
    84  *      - \%RCi             - Takes a #RTCCINT value.
     84 *      - \%RCi             - Takes a #RTINT value.
    8585 *      - \%RCp             - Takes a #RTCCPHYS value.
    8686 *      - \%RCr             - Takes a #RTCCUINTREG value.
     
    233233#define STRMEM(str) sizeof(str) - 1, str
    234234                    { STRMEM("Ci"),      sizeof(RTINT),          10, RTSF_INT,   RTSTR_F_VALSIGNED },
    235                     { STRMEM("Cp"),      sizeof(RTGCPHYS),       16, RTSF_INTW,  0 },
     235                    { STRMEM("Cp"),      sizeof(RTCCPHYS),       16, RTSF_INTW,  0 },
    236236                    { STRMEM("Cr"),      sizeof(RTCCUINTREG),    16, RTSF_INTW,  0 },
    237237                    { STRMEM("Cu"),      sizeof(RTUINT),         10, RTSF_INT,   0 },
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