Lines Matching refs:buflen
663 size_t buflen ) in x509_crt_parse_der_core() argument
682 len = buflen; in x509_crt_parse_der_core()
920 size_t buflen ) in mbedtls_x509_crt_parse_der() argument
952 if( ( ret = x509_crt_parse_der_core( crt, buf, buflen ) ) != 0 ) in mbedtls_x509_crt_parse_der()
970 int mbedtls_x509_crt_parse( mbedtls_x509_crt *chain, const unsigned char *buf, size_t buflen ) in mbedtls_x509_crt_parse() argument
988 if( buflen != 0 && buf[buflen - 1] == '\0' && in mbedtls_x509_crt_parse()
995 return mbedtls_x509_crt_parse_der( chain, buf, buflen ); in mbedtls_x509_crt_parse()
997 return mbedtls_x509_crt_parse_der( chain, buf, buflen ); in mbedtls_x509_crt_parse()
1007 while( buflen > 1 ) in mbedtls_x509_crt_parse()
1023 buflen -= use_len; in mbedtls_x509_crt_parse()
1037 buflen -= use_len; in mbedtls_x509_crt_parse()
1049 ret = mbedtls_x509_crt_parse_der( chain, pem.buf, pem.buflen ); in mbedtls_x509_crt_parse()