HomeSort by relevance Sort by last modified time
    Searched full:cache_tail (Results 1 - 1 of 1) sorted by null

  /external/dnsmasq/src/
cache.c 19 static struct crec *cache_head = NULL, *cache_tail = NULL, **hash_table = NULL; variable in typeref:struct:
182 if (cache_tail)
183 cache_tail->next = crecp;
186 crecp->prev = cache_tail;
188 cache_tail = crecp;
207 if (!cache_tail)
208 cache_tail = crecp;
222 cache_tail = crecp->prev;
387 if (!(new = cache_tail)) /* no entries left - cache is too small, bail */
    [all...]

Completed in 37 milliseconds