Lines Matching refs:buflen
1074 size_t buflen, in x509_crt_parse_der_core() argument
1097 len = buflen; in x509_crt_parse_der_core()
1313 size_t buflen, in mbedtls_x509_crt_parse_der_internal() argument
1348 ret = x509_crt_parse_der_core(crt, buf, buflen, make_copy, cb, p_ctx); in mbedtls_x509_crt_parse_der_internal()
1366 size_t buflen) in mbedtls_x509_crt_parse_der_nocopy() argument
1368 return mbedtls_x509_crt_parse_der_internal(chain, buf, buflen, 0, NULL, NULL); in mbedtls_x509_crt_parse_der_nocopy()
1373 size_t buflen, in mbedtls_x509_crt_parse_der_with_ext_cb() argument
1378 return mbedtls_x509_crt_parse_der_internal(chain, buf, buflen, make_copy, cb, p_ctx); in mbedtls_x509_crt_parse_der_with_ext_cb()
1383 size_t buflen) in mbedtls_x509_crt_parse_der() argument
1385 return mbedtls_x509_crt_parse_der_internal(chain, buf, buflen, 1, NULL, NULL); in mbedtls_x509_crt_parse_der()
1394 size_t buflen) in mbedtls_x509_crt_parse() argument
1413 if (buflen != 0 && buf[buflen - 1] == '\0' && in mbedtls_x509_crt_parse()
1419 return mbedtls_x509_crt_parse_der(chain, buf, buflen); in mbedtls_x509_crt_parse()
1422 return mbedtls_x509_crt_parse_der(chain, buf, buflen); in mbedtls_x509_crt_parse()
1431 while (buflen > 1) { in mbedtls_x509_crt_parse()
1445 buflen -= use_len; in mbedtls_x509_crt_parse()
1455 buflen -= use_len; in mbedtls_x509_crt_parse()
1468 ret = mbedtls_x509_crt_parse_der(chain, pem.buf, pem.buflen); in mbedtls_x509_crt_parse()