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

  /external/selinux/libsemanage/src/
database_llist.h 25 cache_entry_t *cache_tail; member in struct:dbase_llist
38 dbase->cache_tail = 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 95 milliseconds