Searched defs:uDepth (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-dyntype.cpp103 RTDECL(int) RTAsn1DynType_Enum(PRTASN1DYNTYPE pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
110 return pThis->u.Core.pOps->pfnEnum(&pThis->u.Core, pfnCallback, uDepth, pvUser);
H A Dasn1-ut-null.cpp101 RTDECL(int) RTAsn1Null_Enum(PRTASN1NULL pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
H A Dasn1-encode.cpp152 static DECLCALLBACK(int) rtAsn1EncodePrepareCallback(PRTASN1CORE pAsn1Core, const char *pszName, uint32_t uDepth, void *pvUser) argument
174 rc = pAsn1Core->pOps->pfnEnum(pAsn1Core, rtAsn1EncodePrepareCallback, uDepth + 1, pArgs);
361 static DECLCALLBACK(int) rtAsn1EncodeWriteCallback(PRTASN1CORE pAsn1Core, const char *pszName, uint32_t uDepth, void *pvUser)
389 rc = pAsn1Core->pOps->pfnEnum(pAsn1Core, rtAsn1EncodeWriteCallback, uDepth + 1, pArgs);
H A Dasn1-ut-boolean.cpp159 RTDECL(int) RTAsn1Boolean_Enum(PRTASN1BOOLEAN pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
H A Dasn1-ut-core.cpp240 RTDECL(int) RTAsn1Core_Enum(PRTASN1CORE pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
246 NOREF(uDepth);
H A Dasn1-ut-octetstring.cpp337 RTDECL(int) RTAsn1OctetString_Enum(PRTASN1OCTETSTRING pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
343 return pfnCallback(pThis->pEncapsulated, "Encapsulated", uDepth + 1, pvUser);
H A Dasn1-ut-time.cpp153 RTDECL(int) RTAsn1Time_Enum(PRTASN1TIME pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
224 RTDECL(int) RT_CONCAT(a_Api,_Enum)(PRTASN1TIME pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) \
H A Dasn1-dump.cpp82 * @param uDepth The indentation depth.
84 static void rtAsn1DumpPrintIdent(PRTASN1DUMPDATA pData, uint32_t uDepth) argument
86 uint32_t cchLeft = uDepth * 2;
128 * @param uDepth The current identation level.
130 static void rtAsn1DumpString(PRTASN1DUMPDATA pData, PCRTASN1CORE pAsn1Core, const char *pszType, uint32_t uDepth) argument
154 rtAsn1DumpPrintIdent(pData, uDepth + 1);
575 * @param uDepth The current depth (for indentation).
577 static bool rtAsn1DumpUniversalTypeAndValue(PRTASN1DUMPDATA pData, PCRTASN1CORE pAsn1Core, uint32_t uDepth) argument
671 rtAsn1DumpString(pData, pAsn1Core, "UTF8 STRING", uDepth);
688 rtAsn1DumpString(pData, pAsn1Core, "NUMERIC STRING", uDepth);
748 rtAsn1DumpEnumCallback(PRTASN1CORE pAsn1Core, const char *pszName, uint32_t uDepth, void *pvUser) argument
[all...]
H A Dasn1-ut-bitstring.cpp424 RTDECL(int) RTAsn1BitString_Enum(PRTASN1BITSTRING pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
430 return pfnCallback(pThis->pEncapsulated, "Encapsulated", uDepth + 1, pvUser);
H A Dasn1-ut-integer.cpp420 RTDECL(int) RTAsn1Integer_Enum(PRTASN1INTEGER pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
H A Dasn1-ut-objid.cpp496 RTDECL(int) RTAsn1ObjId_Enum(PRTASN1OBJID pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
H A Dasn1-ut-string.cpp1735 RTDECL(int) RTAsn1String_Enum(PRTASN1STRING pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) argument
1786 RTDECL(int) RT_CONCAT(a_Api,_Enum)(PRTASN1STRING pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) \
/vbox/src/VBox/Runtime/common/crypto/
H A Dx509-certpaths.cpp63 uint32_t uDepth : 8; member in struct:RTCRX509CERTPATHNODE
640 pNew->uDepth = pParent->uDepth + 1;
678 if (RT_UNLIKELY(pNode->uDepth >= 50))
840 && pNode->uDepth < pCurLeaf->uDepth) )
881 pCur->uDepth = 0;
1131 iPath, RTCRX509CERTPATHNODE_SRC_IS_TRUSTED(pCurLeaf->uSrc) ? "trusted" : "untrusted", pCurLeaf->uDepth,
1919 pThis->v.cNodes = pTrustAnchor->uDepth;
2718 *pcNodes = pLeaf->uDepth
[all...]

Completed in 84 milliseconds