Lines Matching refs:next

373         a = a->next;  in x509_name_cmp()
374 b = b->next; in x509_name_cmp()
692 mbedtls_x509_sequence *seq_cur = subject_alt_name->next; in x509_get_subject_alt_name()
697 seq_cur = seq_cur->next; in x509_get_subject_alt_name()
702 subject_alt_name->next = NULL; in x509_get_subject_alt_name()
709 if( cur->next != NULL ) in x509_get_subject_alt_name()
712 cur->next = mbedtls_calloc( 1, sizeof( mbedtls_asn1_sequence ) ); in x509_get_subject_alt_name()
714 if( cur->next == NULL ) in x509_get_subject_alt_name()
718 cur = cur->next; in x509_get_subject_alt_name()
729 cur->next = NULL; in x509_get_subject_alt_name()
850 if( cur->next != NULL ) in x509_get_certificate_policies()
853 cur->next = mbedtls_calloc( 1, sizeof( mbedtls_asn1_sequence ) ); in x509_get_certificate_policies()
855 if( cur->next == NULL ) in x509_get_certificate_policies()
859 cur = cur->next; in x509_get_certificate_policies()
890 cur->next = NULL; in x509_get_certificate_policies()
1364 while( crt->version != 0 && crt->next != NULL ) in mbedtls_x509_crt_parse_der_internal()
1367 crt = crt->next; in mbedtls_x509_crt_parse_der_internal()
1373 if( crt->version != 0 && crt->next == NULL ) in mbedtls_x509_crt_parse_der_internal()
1375 crt->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_crt ) ); in mbedtls_x509_crt_parse_der_internal()
1377 if( crt->next == NULL ) in mbedtls_x509_crt_parse_der_internal()
1381 mbedtls_x509_crt_init( crt->next ); in mbedtls_x509_crt_parse_der_internal()
1382 crt = crt->next; in mbedtls_x509_crt_parse_der_internal()
1389 prev->next = NULL; in mbedtls_x509_crt_parse_der_internal()
1861 cur = cur->next; in x509_info_subject_alt_name()
1935 cur = cur->next; in x509_info_subject_alt_name()
2028 cur = cur->next; in x509_info_ext_key_usage()
2057 cur = cur->next; in x509_info_cert_policies()
2291 for( cur = &crt->ext_key_usage; cur != NULL; cur = cur->next ) in mbedtls_x509_crt_check_extended_key_usage()
2324 cur = cur->next; in mbedtls_x509_crt_is_revoked()
2350 crl_list = crl_list->next; in x509_crt_verifycrl()
2410 crl_list = crl_list->next; in x509_crt_verifycrl()
2587 for( parent = candidates; parent != NULL; parent = parent->next ) in x509_crt_find_parent_in()
2699 search_list = *parent_is_trusted ? trust_ca : child->next; in x509_crt_find_parent()
2752 for( cur = trust_ca; cur != NULL; cur = cur->next ) in x509_crt_check_ee_locally_trusted()
3031 for( cur = &crt->subject_alt_names; cur != NULL; cur = cur->next ) in x509_crt_verify_name()
3042 for( name = &crt->subject; name != NULL; name = name->next ) in x509_crt_verify_name()
3288 name_cur = cert_cur->issuer.next; in mbedtls_x509_crt_free()
3292 name_cur = name_cur->next; in mbedtls_x509_crt_free()
3297 name_cur = cert_cur->subject.next; in mbedtls_x509_crt_free()
3301 name_cur = name_cur->next; in mbedtls_x509_crt_free()
3306 seq_cur = cert_cur->ext_key_usage.next; in mbedtls_x509_crt_free()
3310 seq_cur = seq_cur->next; in mbedtls_x509_crt_free()
3316 seq_cur = cert_cur->subject_alt_names.next; in mbedtls_x509_crt_free()
3320 seq_cur = seq_cur->next; in mbedtls_x509_crt_free()
3326 seq_cur = cert_cur->certificate_policies.next; in mbedtls_x509_crt_free()
3330 seq_cur = seq_cur->next; in mbedtls_x509_crt_free()
3342 cert_cur = cert_cur->next; in mbedtls_x509_crt_free()
3350 cert_cur = cert_cur->next; in mbedtls_x509_crt_free()