Lines Matching refs:next
240 cur_entry->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_crl_entry ) ); in x509_get_entries()
242 if( cur_entry->next == NULL ) in x509_get_entries()
245 cur_entry = cur_entry->next; in x509_get_entries()
277 while( crl->version != 0 && crl->next != NULL ) in mbedtls_x509_crl_parse_der()
278 crl = crl->next; in mbedtls_x509_crl_parse_der()
280 if( crl->version != 0 && crl->next == NULL ) in mbedtls_x509_crl_parse_der()
282 crl->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_crl ) ); in mbedtls_x509_crl_parse_der()
284 if( crl->next == NULL ) in mbedtls_x509_crl_parse_der()
290 mbedtls_x509_crl_init( crl->next ); in mbedtls_x509_crl_parse_der()
291 crl = crl->next; in mbedtls_x509_crl_parse_der()
636 entry = entry->next; in mbedtls_x509_crl_info()
681 name_cur = crl_cur->issuer.next; in mbedtls_x509_crl_free()
685 name_cur = name_cur->next; in mbedtls_x509_crl_free()
690 entry_cur = crl_cur->entry.next; in mbedtls_x509_crl_free()
694 entry_cur = entry_cur->next; in mbedtls_x509_crl_free()
705 crl_cur = crl_cur->next; in mbedtls_x509_crl_free()
713 crl_cur = crl_cur->next; in mbedtls_x509_crl_free()