Lines Matching defs:uDepth

82  * @param   uDepth              The indentation depth.
84 static void rtAsn1DumpPrintIdent(PRTASN1DUMPDATA pData, uint32_t uDepth)
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)
154 rtAsn1DumpPrintIdent(pData, uDepth + 1);
575 * @param uDepth The current depth (for indentation).
577 static bool rtAsn1DumpUniversalTypeAndValue(PRTASN1DUMPDATA pData, PCRTASN1CORE pAsn1Core, uint32_t uDepth)
671 rtAsn1DumpString(pData, pAsn1Core, "UTF8 STRING", uDepth);
688 rtAsn1DumpString(pData, pAsn1Core, "NUMERIC STRING", uDepth);
692 rtAsn1DumpString(pData, pAsn1Core, "PRINTABLE STRING", uDepth);
696 rtAsn1DumpString(pData, pAsn1Core, "T61 STRING", uDepth);
700 rtAsn1DumpString(pData, pAsn1Core, "VIDEOTEX STRING", uDepth);
704 rtAsn1DumpString(pData, pAsn1Core, "IA5 STRING", uDepth);
708 rtAsn1DumpString(pData, pAsn1Core, "GRAPHIC STRING", uDepth);
712 rtAsn1DumpString(pData, pAsn1Core, "VISIBLE STRING", uDepth);
716 rtAsn1DumpString(pData, pAsn1Core, "GENERAL STRING", uDepth);
720 rtAsn1DumpString(pData, pAsn1Core, "UNIVERSAL STRING", uDepth);
724 rtAsn1DumpString(pData, pAsn1Core, "BMP STRING", uDepth);
748 static DECLCALLBACK(int) rtAsn1DumpEnumCallback(PRTASN1CORE pAsn1Core, const char *pszName, uint32_t uDepth, void *pvUser)
755 rtAsn1DumpPrintIdent(pData, uDepth);
760 fOpen = rtAsn1DumpUniversalTypeAndValue(pData, pAsn1Core, uDepth);
767 fOpen = rtAsn1DumpUniversalTypeAndValue(pData, pAsn1Core, uDepth);
780 fOpen = rtAsn1DumpUniversalTypeAndValue(pData, pAsn1Core, uDepth);
806 pAsn1Core->pOps->pfnEnum(pAsn1Core, rtAsn1DumpEnumCallback, uDepth, pData);