Lines Matching defs:cur_entry
221 mbedtls_x509_crl_entry *cur_entry = entry;
242 cur_entry->raw.tag = **p;
248 cur_entry->raw.p = *p;
249 cur_entry->raw.len = len2;
252 if ((ret = mbedtls_x509_get_serial(p, end2, &cur_entry->serial)) != 0) {
257 &cur_entry->revocation_date)) != 0) {
262 &cur_entry->entry_ext)) != 0) {
267 cur_entry->next = mbedtls_calloc(1, sizeof(mbedtls_x509_crl_entry));
269 if (cur_entry->next == NULL) {
273 cur_entry = cur_entry->next;