Lines Matching defs:old
139 mbedtls_ssl_cache_entry *old = NULL;
165 * If not, remember the oldest entry in `old` for later.
177 old = cur;
206 if (old == NULL) {
218 old = cache->chain;
219 cache->chain = old->next;
220 old->next = NULL;
221 last->next = old;
224 /* Now `old` points to the oldest entry to be overwritten. */
225 cur = old;
232 * so we reuse `old` to record `next` temporarily. */
233 old = cur->next;
235 cur->next = old;