Lines Matching defs:pszErrorTag

49  * @param   pszErrorTag         The error tag.
51 static int rtAsn1Time_NormalizeTime(PRTASN1CURSOR pCursor, PRTASN1TIME pThis, const char *pszType, const char *pszErrorTag)
73 pszErrorTag, pszType, pThis->Asn1Core.cb, pThis->Asn1Core.uData.pch);
78 pszErrorTag, pszType, pThis->Asn1Core.cb, pThis->Asn1Core.uData.pch);
83 pszErrorTag, pszType, pThis->Asn1Core.cb, pThis->Asn1Core.uData.pch,
95 * @param pszErrorTag The error tag.
97 static int rtAsn1Time_ConvertUTCTime(PRTASN1CURSOR pCursor, PRTASN1TIME pThis, const char *pszErrorTag)
145 rc = rtAsn1Time_NormalizeTime(pCursor, pThis, "UTCTime", pszErrorTag);
151 pszErrorTag, pThis->Asn1Core.cb, pachTime);
155 pszErrorTag, pThis->Asn1Core.cb);
170 * @param pszErrorTag The error tag.
173 PRTASN1TIME pThis, const char *pszErrorTag)
183 pszErrorTag, *pchFraction, pThis->Asn1Core.cb, pThis->Asn1Core.uData.pch);
189 pszErrorTag, pThis->Asn1Core.cb, pThis->Asn1Core);
202 pszErrorTag, pThis->Asn1Core.cb, pThis->Asn1Core.uData.pch);
218 pszErrorTag, pThis->Asn1Core.cb, pThis->Asn1Core.uData.pch);
222 pszErrorTag, pThis->Asn1Core.cb, pThis->Asn1Core.uData.pch);
233 * @param pszErrorTag The error tag.
235 static int rtAsn1Time_ConvertGeneralizedTime(PRTASN1CURSOR pCursor, PRTASN1TIME pThis, const char *pszErrorTag)
280 rc = rtAsn1Time_ConvertGeneralizedTimeFraction(pCursor, pachTime + 14, cchLeft, pThis, pszErrorTag);
285 rc = rtAsn1Time_NormalizeTime(pCursor, pThis, "GeneralizedTime", pszErrorTag);
293 pszErrorTag, pThis->Asn1Core.cb, pachTime);
298 pszErrorTag, pThis->Asn1Core.cb);
304 RTDECL(int) RTAsn1Time_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1TIME pThis, const char *pszErrorTag)
307 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
317 return rtAsn1Time_ConvertUTCTime(pCursor, pThis, pszErrorTag);
325 return rtAsn1Time_ConvertGeneralizedTime(pCursor, pThis, pszErrorTag);
329 pszErrorTag, pThis->Asn1Core.uTag);
334 pszErrorTag, pThis->Asn1Core.fClass, pThis->Asn1Core.uTag);
341 RTDECL(int) RTAsn1UtcTime_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1TIME pThis, const char *pszErrorTag)
343 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
348 fFlags, pszErrorTag, "UTC TIME");
354 return rtAsn1Time_ConvertUTCTime(pCursor, pThis, pszErrorTag);
362 RTDECL(int) RTAsn1GeneralizedTime_DecodeAsn1(PRTASN1CURSOR pCursor, uint32_t fFlags, PRTASN1TIME pThis, const char *pszErrorTag)
364 int rc = RTAsn1CursorReadHdr(pCursor, &pThis->Asn1Core, pszErrorTag);
369 fFlags, pszErrorTag, "GENERALIZED TIME");
375 return rtAsn1Time_ConvertGeneralizedTime(pCursor, pThis, pszErrorTag);