Home
last modified time | relevance | path

Searched refs:cache_tail (Results 1 – 1 of 1) sorted by relevance

/external/dnsmasq/src/
Dcache.c19 static struct crec *cache_head = NULL, *cache_tail = NULL, **hash_table = NULL; variable
182 if (cache_tail) in cache_free()
183 cache_tail->next = crecp; in cache_free()
186 crecp->prev = cache_tail; in cache_free()
188 cache_tail = crecp; in cache_free()
207 if (!cache_tail) in cache_link()
208 cache_tail = crecp; in cache_link()
222 cache_tail = crecp->prev; in cache_unlink()
387 if (!(new = cache_tail)) /* no entries left - cache is too small, bail */ in cache_insert()