Searched refs:pThisCore (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-basics.cpp387 RTDECL(int) RTAsn1VtDeepEnum(PRTASN1CORE pThisCore, bool fDepthFirst, uint32_t uDepth,
391 if (RTAsn1Core_IsPresent(pThisCore))
393 PCRTASN1COREVTABLE pOps = pThisCore->pOps;
399 rc = pOps->pfnEnum(pThisCore, fDepthFirst ? rtAsn1VtDeepEnumDepthFirst : rtAsn1VtDeepEnumDepthLast, uDepth, &Ctx);
410 RTDECL(int) RTAsn1VtClone(PRTASN1CORE pThisCore, PRTASN1CORE pSrcCore, PCRTASN1ALLOCATORVTABLE pAllocator)
412 AssertPtrReturn(pThisCore, VERR_INVALID_POINTER);
420 return pSrcCore->pOps->pfnClone(pThisCore, pSrcCore, pAllocator);
423 RT_ZERO(*pThisCore);
453 RTDECL(int) RTAsn1VtCheckSanity(PCRTASN1CORE pThisCore, uint32_t fFlags,
457 if (RTAsn1Core_IsPresent(pThisCore))
[all...]
H A Dasn1-ut-bitstring.cpp216 static DECLCALLBACK(int) RTAsn1BitString_EncodePrep(PRTASN1CORE pThisCore, uint32_t fFlags, PRTERRINFO pErrInfo) argument
218 PRTASN1BITSTRING pThis = (PRTASN1BITSTRING)pThisCore;
263 static DECLCALLBACK(int) RTAsn1BitString_EncodeWrite(PRTASN1CORE pThisCore, uint32_t fFlags, PFNRTASN1ENCODEWRITER pfnWriter, argument
266 PRTASN1BITSTRING pThis = (PRTASN1BITSTRING)pThisCore;
H A Dasn1-ut-octetstring.cpp164 static DECLCALLBACK(int) RTAsn1OctetString_EncodePrep(PRTASN1CORE pThisCore, uint32_t fFlags, PRTERRINFO pErrInfo) argument
166 PRTASN1OCTETSTRING pThis = (PRTASN1OCTETSTRING)pThisCore;
203 static DECLCALLBACK(int) RTAsn1OctetString_EncodeWrite(PRTASN1CORE pThisCore, uint32_t fFlags, PFNRTASN1ENCODEWRITER pfnWriter, argument
206 PRTASN1OCTETSTRING pThis = (PRTASN1OCTETSTRING)pThisCore;
/vbox/include/iprt/
H A Dasn1.h241 * @param pThisCore Pointer to the ASN.1 core to destroy.
243 typedef DECLCALLBACK(void) FNRTASN1COREVTDTOR(PRTASN1CORE pThisCore);
251 * @param pThisCore Pointer to the ASN.1 core to enumerate members of.
256 typedef DECLCALLBACK(int) FNRTASN1COREVTENUM(PRTASN1CORE pThisCore, PFNRTASN1ENUMCALLBACK pfnCallback,
264 * @param pThisCore Pointer to the ASN.1 core to initialize as a clone
270 typedef DECLCALLBACK(int) FNRTASN1COREVTCLONE(PRTASN1CORE pThisCore, PCRTASN1CORE pSrcCore, PCRTASN1ALLOCATORVTABLE pAllocator);
291 * @param pThisCore Pointer to the ASN.1 core of the object to check out.
296 typedef DECLCALLBACK(int) FNRTASN1COREVTCHECKSANITY(PCRTASN1CORE pThisCore, uint32_t fFlags,
304 * On successful return, the pThisCore->cb value shall be valid and up to date.
309 * @param pThisCore Pointe
1350 RTDECL(void) RTAsn1VtDelete(PRTASN1CORE pThisCore); variable
[all...]

Completed in 48 milliseconds