summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2015-09-28 14:05:58 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2015-09-28 14:05:58 +0000
commit8a4fc86e9c1905663fac6a4fb1a6fc2af16ed521 (patch)
tree73ce0d3877172c99c20d1094ccc27a4009ca84da /src/VBox/Runtime/common
parent4e43ed0a5e48a454e2de7d5a1d77411b5fe3134e (diff)
downloadVirtualBox-svn-8a4fc86e9c1905663fac6a4fb1a6fc2af16ed521.tar.gz
IPRT: Doxygen clenaups (mostly).
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@57926 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/common')
-rw-r--r--src/VBox/Runtime/common/asn1/asn1-basics.cpp28
-rw-r--r--src/VBox/Runtime/common/checksum/manifest2.cpp10
-rw-r--r--src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp2
-rw-r--r--src/VBox/Runtime/common/err/errmsg.cpp2
-rw-r--r--src/VBox/Runtime/common/err/errmsgxpcom.cpp2
5 files changed, 22 insertions, 22 deletions
diff --git a/src/VBox/Runtime/common/asn1/asn1-basics.cpp b/src/VBox/Runtime/common/asn1/asn1-basics.cpp
index 32702904bfd..b47eb738d65 100644
--- a/src/VBox/Runtime/common/asn1/asn1-basics.cpp
+++ b/src/VBox/Runtime/common/asn1/asn1-basics.cpp
@@ -333,13 +333,13 @@ RTDECL(void) RTAsn1ContentFree(PRTASN1CORE pAsn1Core)
* Virtual method table based API.
*/
-RTDECL(void) RTAsn1VtDelete(PRTASN1CORE pAsn1Core)
+RTDECL(void) RTAsn1VtDelete(PRTASN1CORE pThisCore)
{
- if (pAsn1Core)
+ if (pThisCore)
{
- PCRTASN1COREVTABLE pOps = pAsn1Core->pOps;
+ PCRTASN1COREVTABLE pOps = pThisCore->pOps;
if (pOps)
- pOps->pfnDtor(pAsn1Core);
+ pOps->pfnDtor(pThisCore);
}
}
@@ -354,32 +354,32 @@ typedef struct RTASN1DEEPENUMCTX
} RTASN1DEEPENUMCTX;
-static DECLCALLBACK(int) rtAsn1VtDeepEnumDepthFirst(PRTASN1CORE pAsn1Core, const char *pszName, uint32_t uDepth, void *pvUser)
+static DECLCALLBACK(int) rtAsn1VtDeepEnumDepthFirst(PRTASN1CORE pThisCore, const char *pszName, uint32_t uDepth, void *pvUser)
{
- AssertReturn(pAsn1Core, VINF_SUCCESS);
+ AssertReturn(pThisCore, VINF_SUCCESS);
- if (pAsn1Core->pOps && pAsn1Core->pOps->pfnEnum)
+ if (pThisCore->pOps && pThisCore->pOps->pfnEnum)
{
- int rc = pAsn1Core->pOps->pfnEnum(pAsn1Core, rtAsn1VtDeepEnumDepthFirst, uDepth, pvUser);
+ int rc = pThisCore->pOps->pfnEnum(pThisCore, rtAsn1VtDeepEnumDepthFirst, uDepth, pvUser);
if (rc != VINF_SUCCESS)
return rc;
}
RTASN1DEEPENUMCTX *pCtx = (RTASN1DEEPENUMCTX *)pvUser;
- return pCtx->pfnCallback(pAsn1Core, pszName, uDepth, pCtx->pvUser);
+ return pCtx->pfnCallback(pThisCore, pszName, uDepth, pCtx->pvUser);
}
-static DECLCALLBACK(int) rtAsn1VtDeepEnumDepthLast(PRTASN1CORE pAsn1Core, const char *pszName, uint32_t uDepth, void *pvUser)
+static DECLCALLBACK(int) rtAsn1VtDeepEnumDepthLast(PRTASN1CORE pThisCore, const char *pszName, uint32_t uDepth, void *pvUser)
{
- AssertReturn(pAsn1Core, VINF_SUCCESS);
+ AssertReturn(pThisCore, VINF_SUCCESS);
RTASN1DEEPENUMCTX *pCtx = (RTASN1DEEPENUMCTX *)pvUser;
- int rc = pCtx->pfnCallback(pAsn1Core, pszName, uDepth, pCtx->pvUser);
+ int rc = pCtx->pfnCallback(pThisCore, pszName, uDepth, pCtx->pvUser);
if (rc == VINF_SUCCESS)
{
- if (pAsn1Core->pOps && pAsn1Core->pOps->pfnEnum)
- rc = pAsn1Core->pOps->pfnEnum(pAsn1Core, rtAsn1VtDeepEnumDepthFirst, uDepth, pvUser);
+ if (pThisCore->pOps && pThisCore->pOps->pfnEnum)
+ rc = pThisCore->pOps->pfnEnum(pThisCore, rtAsn1VtDeepEnumDepthFirst, uDepth, pvUser);
}
return rc;
}
diff --git a/src/VBox/Runtime/common/checksum/manifest2.cpp b/src/VBox/Runtime/common/checksum/manifest2.cpp
index b9b05711009..873b559c6f4 100644
--- a/src/VBox/Runtime/common/checksum/manifest2.cpp
+++ b/src/VBox/Runtime/common/checksum/manifest2.cpp
@@ -134,7 +134,7 @@ typedef struct RTMANIFESTEQUALS
/** Name of entries to ignore. */
const char * const *papszIgnoreEntries;
/** Name of attributes to ignore. */
- const char * const *papszIgnoreAttr;
+ const char * const *papszIgnoreAttrs;
/** Flags governing the comparision. */
uint32_t fFlags;
/** Where to return an error message (++) on failure. Can be NULL. */
@@ -349,7 +349,7 @@ static DECLCALLBACK(int) rtManifestAttributeFindMissing2(PRTSTRSPACECORE pStr, v
/*
* Ignore this entry?
*/
- char const * const *ppsz = pEquals->papszIgnoreAttr;
+ char const * const *ppsz = pEquals->papszIgnoreAttrs;
if (ppsz)
{
while (*ppsz)
@@ -424,7 +424,7 @@ static DECLCALLBACK(int) rtManifestAttributeCompare(PRTSTRSPACECORE pStr, void *
/*
* Ignore this entry?
*/
- char const * const *ppsz = pEquals->papszIgnoreAttr;
+ char const * const *ppsz = pEquals->papszIgnoreAttrs;
if (ppsz)
{
while (*ppsz)
@@ -570,7 +570,7 @@ static DECLCALLBACK(int) rtManifestEntryCompare(PRTSTRSPACECORE pStr, void *pvUs
RTDECL(int) RTManifestEqualsEx(RTMANIFEST hManifest1, RTMANIFEST hManifest2, const char * const *papszIgnoreEntries,
- const char * const *papszIgnoreAttr, uint32_t fFlags, char *pszError, size_t cbError)
+ const char * const *papszIgnoreAttrs, uint32_t fFlags, char *pszError, size_t cbError)
{
/*
* Validate input.
@@ -613,7 +613,7 @@ RTDECL(int) RTManifestEqualsEx(RTMANIFEST hManifest1, RTMANIFEST hManifest2, con
Equals.pThis2 = pThis2;
Equals.fFlags = fFlags;
Equals.papszIgnoreEntries = papszIgnoreEntries;
- Equals.papszIgnoreAttr = papszIgnoreAttr;
+ Equals.papszIgnoreAttrs = papszIgnoreAttrs;
Equals.pszError = pszError;
Equals.cbError = cbError;
diff --git a/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp b/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
index e446eef1521..046155faea9 100644
--- a/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
+++ b/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
@@ -119,7 +119,7 @@ RTDECL(int) RTErrConvertFromErrno(unsigned uNativeCode)
case EINVAL: return VERR_INVALID_PARAMETER;
#endif
#ifdef ENFILE
- case ENFILE: return VERR_TOO_MANY_OPEN_FILES; /**@Todo fix duplicate error */
+ case ENFILE: return VERR_TOO_MANY_OPEN_FILES; /** @todo fix duplicate error */
#endif
#ifdef EMFILE
case EMFILE: return VERR_TOO_MANY_OPEN_FILES;
diff --git a/src/VBox/Runtime/common/err/errmsg.cpp b/src/VBox/Runtime/common/err/errmsg.cpp
index da67bacb5e2..db9e207e9d9 100644
--- a/src/VBox/Runtime/common/err/errmsg.cpp
+++ b/src/VBox/Runtime/common/err/errmsg.cpp
@@ -45,7 +45,7 @@
*/
static const RTSTATUSMSG g_aStatusMsgs[] =
{
-#ifndef IPRT_NO_ERROR_DATA
+#if !defined(IPRT_NO_ERROR_DATA) && !defined(DOXYGEN_RUNNING)
# include "errmsgdata.h"
#else
{ "Success.", "Success.", "VINF_SUCCESS", 0 },
diff --git a/src/VBox/Runtime/common/err/errmsgxpcom.cpp b/src/VBox/Runtime/common/err/errmsgxpcom.cpp
index 6785ebb1c27..c29f4e054bd 100644
--- a/src/VBox/Runtime/common/err/errmsgxpcom.cpp
+++ b/src/VBox/Runtime/common/err/errmsgxpcom.cpp
@@ -106,7 +106,7 @@ static const RTCOMERRMSG g_aStatusMsgs[] =
MY_ERR("NS_ERROR_FILE_ACCESS_DENIED", "NS_ERROR_FILE_ACCESS_DENIED", UINT32_C(0x80520015)),
MY_ERR("NS_SUCCESS_FILE_DIRECTORY_EMPTY", "NS_SUCCESS_FILE_DIRECTORY_EMPTY", UINT32_C(0x00520001)),
-#if defined(VBOX) && !defined(IN_GUEST)
+#if defined(VBOX) && !defined(IN_GUEST) && !defined(DOXYGEN_RUNNING)
# include "errmsgvboxcomdata.h"
#endif