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

/bind-9.6-ESV-R11/bin/named/
H A Dconfig.c459 struct { const char *name; } *lists = NULL; local
508 /* Grow lists? */
514 newsize = newlen * sizeof(*lists);
515 oldsize = listcount * sizeof(*lists);
520 memmove(new, lists, oldsize);
521 isc_mem_put(mctx, lists, oldsize);
523 lists = new;
528 if (strcasecmp(lists[j].name, listname) == 0)
542 lists[l++].name = listname;
663 if (lists !
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dlog.c1109 void *lists; local
1122 lists = isc_mem_get(lctx->mctx, bytes);
1124 if (lists == NULL)
1127 memset(lists, 0, bytes);
1132 memmove(lists, lcfg->channellists, bytes);
1136 lcfg->channellists = lists;

Completed in 14 milliseconds