Lines Matching refs:next

364         a = a->next;  in x509_name_cmp()
365 b = b->next; in x509_name_cmp()
804 if (cur->next != NULL) { in x509_get_certificate_policies()
808 cur->next = mbedtls_calloc(1, sizeof(mbedtls_asn1_sequence)); in x509_get_certificate_policies()
810 if (cur->next == NULL) { in x509_get_certificate_policies()
815 cur = cur->next; in x509_get_certificate_policies()
848 cur->next = NULL; in x509_get_certificate_policies()
1330 while (crt->version != 0 && crt->next != NULL) { in mbedtls_x509_crt_parse_der_internal()
1332 crt = crt->next; in mbedtls_x509_crt_parse_der_internal()
1338 if (crt->version != 0 && crt->next == NULL) { in mbedtls_x509_crt_parse_der_internal()
1339 crt->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crt)); in mbedtls_x509_crt_parse_der_internal()
1341 if (crt->next == NULL) { in mbedtls_x509_crt_parse_der_internal()
1346 mbedtls_x509_crt_init(crt->next); in mbedtls_x509_crt_parse_der_internal()
1347 crt = crt->next; in mbedtls_x509_crt_parse_der_internal()
1353 prev->next = NULL; in mbedtls_x509_crt_parse_der_internal()
1708 cur = cur->next; in x509_info_ext_key_usage()
1737 cur = cur->next; in x509_info_cert_policies()
1970 for (cur = &crt->ext_key_usage; cur != NULL; cur = cur->next) { in mbedtls_x509_crt_check_extended_key_usage()
2000 cur = cur->next; in mbedtls_x509_crt_is_revoked()
2031 crl_list = crl_list->next; in x509_crt_verifycrl()
2114 crl_list = crl_list->next; in x509_crt_verifycrl()
2290 for (parent = candidates; parent != NULL; parent = parent->next) { in x509_crt_find_parent_in()
2402 search_list = *parent_is_trusted ? trust_ca : child->next; in x509_crt_find_parent()
2455 for (cur = trust_ca; cur != NULL; cur = cur->next) { in x509_crt_check_ee_locally_trusted()
2913 for (const mbedtls_x509_sequence *cur = san; cur != NULL; cur = cur->next) { in x509_crt_check_san_ip()
2928 for (const mbedtls_x509_sequence *cur = san; cur != NULL; cur = cur->next) { in x509_crt_check_san_uri()
2949 for (const mbedtls_x509_sequence *cur = san; cur != NULL; cur = cur->next) { in x509_crt_check_san()
2996 for (name = &crt->subject; name != NULL; name = name->next) { in x509_crt_verify_name()
3241 mbedtls_asn1_free_named_data_list_shallow(cert_cur->issuer.next); in mbedtls_x509_crt_free()
3242 mbedtls_asn1_free_named_data_list_shallow(cert_cur->subject.next); in mbedtls_x509_crt_free()
3243 mbedtls_asn1_sequence_free(cert_cur->ext_key_usage.next); in mbedtls_x509_crt_free()
3244 mbedtls_asn1_sequence_free(cert_cur->subject_alt_names.next); in mbedtls_x509_crt_free()
3245 mbedtls_asn1_sequence_free(cert_cur->certificate_policies.next); in mbedtls_x509_crt_free()
3246 mbedtls_asn1_sequence_free(cert_cur->authority_key_id.authorityCertIssuer.next); in mbedtls_x509_crt_free()
3253 cert_cur = cert_cur->next; in mbedtls_x509_crt_free()