Lines Matching full:next
267 cur_entry->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crl_entry)); in x509_get_entries()
269 if (cur_entry->next == NULL) { in x509_get_entries()
273 cur_entry = cur_entry->next; in x509_get_entries()
306 while (crl->version != 0 && crl->next != NULL) { in mbedtls_x509_crl_parse_der()
307 crl = crl->next; in mbedtls_x509_crl_parse_der()
310 if (crl->version != 0 && crl->next == NULL) { in mbedtls_x509_crl_parse_der()
311 crl->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crl)); in mbedtls_x509_crl_parse_der()
313 if (crl->next == NULL) { in mbedtls_x509_crl_parse_der()
318 mbedtls_x509_crl_init(crl->next); in mbedtls_x509_crl_parse_der()
319 crl = crl->next; in mbedtls_x509_crl_parse_der()
649 entry = entry->next; in mbedtls_x509_crl_info()
689 mbedtls_asn1_free_named_data_list_shallow(crl_cur->issuer.next); in mbedtls_x509_crl_free()
691 entry_cur = crl_cur->entry.next; in mbedtls_x509_crl_free()
694 entry_cur = entry_cur->next; in mbedtls_x509_crl_free()
704 crl_cur = crl_cur->next; in mbedtls_x509_crl_free()