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