Searched defs:lists (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/bin/named/
H A Dconfig.c587 struct { const char *name; } *lists = NULL; local
661 /* Grow lists? */
667 newsize = newlen * sizeof(*lists);
668 oldsize = listcount * sizeof(*lists);
673 memmove(tmp, lists, oldsize);
674 isc_mem_put(mctx, lists, oldsize);
676 lists = tmp;
681 if (strcasecmp(lists[j].name, listname) == 0)
695 lists[l++].name = listname;
846 if (lists !
[all...]
/bind-9.11.3/lib/isc/
H A Dlog.c1100 void *lists; local
1113 lists = isc_mem_get(lctx->mctx, bytes);
1115 if (lists == NULL)
1118 memset(lists, 0, bytes);
1123 memmove(lists, lcfg->channellists, bytes);
1127 lcfg->channellists = lists;

Completed in 16 milliseconds