Lines Matching defs:first
316 mbedtls_x509_crt *first;
328 first = mbedtls_calloc(1, sizeof(mbedtls_x509_crt));
329 if (first == NULL) {
333 mbedtls_x509_crt_init(first);
335 if (mbedtls_x509_crt_parse_der(first, ca->raw.p, ca->raw.len) != 0) {
342 if (mbedtls_x509_crt_parse_der(first, ca->raw.p, ca->raw.len) != 0) {
351 mbedtls_x509_crt_free(first);
352 mbedtls_free(first);
353 first = NULL;
356 *candidates = first;