Lines Matching refs:next
487 if( cur->next != NULL ) in x509_get_subject_alt_name()
490 cur->next = mbedtls_calloc( 1, sizeof( mbedtls_asn1_sequence ) ); in x509_get_subject_alt_name()
492 if( cur->next == NULL ) in x509_get_subject_alt_name()
496 cur = cur->next; in x509_get_subject_alt_name()
507 cur->next = NULL; in x509_get_subject_alt_name()
931 while( crt->version != 0 && crt->next != NULL ) in mbedtls_x509_crt_parse_der()
934 crt = crt->next; in mbedtls_x509_crt_parse_der()
940 if( crt->version != 0 && crt->next == NULL ) in mbedtls_x509_crt_parse_der()
942 crt->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_crt ) ); in mbedtls_x509_crt_parse_der()
944 if( crt->next == NULL ) in mbedtls_x509_crt_parse_der()
948 mbedtls_x509_crt_init( crt->next ); in mbedtls_x509_crt_parse_der()
949 crt = crt->next; in mbedtls_x509_crt_parse_der()
955 prev->next = NULL; in mbedtls_x509_crt_parse_der()
1249 cur = cur->next; in x509_info_subject_alt_name()
1342 cur = cur->next; in x509_info_ext_key_usage()
1584 for( cur = &crt->ext_key_usage; cur != NULL; cur = cur->next ) in mbedtls_x509_crt_check_extended_key_usage()
1619 cur = cur->next; in mbedtls_x509_crt_is_revoked()
1647 crl_list = crl_list->next; in x509_crt_verifycrl()
1712 crl_list = crl_list->next; in x509_crt_verifycrl()
1840 a = a->next; in x509_name_cmp()
1841 b = b->next; in x509_name_cmp()
1936 for( /* trust_ca */ ; trust_ca != NULL; trust_ca = trust_ca->next ) in x509_crt_verify_top()
2096 grandparent = grandparent->next ) in x509_crt_verify_child()
2113 for( grandparent = parent->next; in x509_crt_verify_child()
2115 grandparent = grandparent->next ) in x509_crt_verify_child()
2221 cur = cur->next; in mbedtls_x509_crt_verify_with_profile()
2243 name = name->next; in mbedtls_x509_crt_verify_with_profile()
2261 for( parent = trust_ca; parent != NULL; parent = parent->next ) in mbedtls_x509_crt_verify_with_profile()
2277 for( parent = crt->next; parent != NULL; parent = parent->next ) in mbedtls_x509_crt_verify_with_profile()
2335 name_cur = cert_cur->issuer.next; in mbedtls_x509_crt_free()
2339 name_cur = name_cur->next; in mbedtls_x509_crt_free()
2344 name_cur = cert_cur->subject.next; in mbedtls_x509_crt_free()
2348 name_cur = name_cur->next; in mbedtls_x509_crt_free()
2353 seq_cur = cert_cur->ext_key_usage.next; in mbedtls_x509_crt_free()
2357 seq_cur = seq_cur->next; in mbedtls_x509_crt_free()
2362 seq_cur = cert_cur->subject_alt_names.next; in mbedtls_x509_crt_free()
2366 seq_cur = seq_cur->next; in mbedtls_x509_crt_free()
2377 cert_cur = cert_cur->next; in mbedtls_x509_crt_free()
2385 cert_cur = cert_cur->next; in mbedtls_x509_crt_free()