Searched refs:g_ns_list (Results 1 – 1 of 1) sorted by relevance
23 static nslist g_ns_list; variable189 g_ns_list.size = NSLIST_DEFAULT_SIZE; in nslist_init()190 g_ns_list.num = 0; in nslist_init()191 g_ns_list.nss = (ns_t **)internal_calloc(NSLIST_DEFAULT_SIZE, sizeof *g_ns_list.nss); in nslist_init()192 if (!g_ns_list.nss) { in nslist_init()196 return &g_ns_list; in nslist_init()201 size_t size = 2 * g_ns_list.size; in nslist_realloc()204 nss = (ns_t **)internal_realloc(g_ns_list.nss, size * (sizeof *g_ns_list.nss)); in nslist_realloc()209 g_ns_list.size = size; in nslist_realloc()210 g_ns_list.nss = nss; in nslist_realloc()[all …]