Lines Matching refs:memlist
250 char **memlist; in copy_group() local
259 memlist = alloc_buffer_alloc_array (&buf, char *, i + 1); in copy_group()
261 if (memlist) { in copy_group()
263 memlist[i] = alloc_buffer_maybe_copy_string (&buf, local->gr_mem[i]); in copy_group()
264 memlist[i] = NULL; in copy_group()
267 result->gr_mem = memlist; in copy_group()
448 char **memlist; in copy_host() local
457 memlist = alloc_buffer_alloc_array (&buf, char *, i + 1); in copy_host()
459 if (memlist) { in copy_host()
461 memlist[j] = alloc_buffer_maybe_copy_string (&buf, local->h_addr_list[j]); in copy_host()
462 memlist[j] = NULL; in copy_host()
465 result->h_addr_list = memlist; in copy_host()