Lines Matching refs:list
228 hesiod_free_list(void *context, char **list) { in hesiod_free_list() argument
231 for (p = list; *p; p++) in hesiod_free_list()
233 free(list); in hesiod_free_list()
338 char *dst, *edst, **list; in get_txt_records() local
380 list = malloc((ancount + 1) * sizeof(char *)); in get_txt_records()
381 if (!list) in get_txt_records()
409 if (!(list[j] = malloc(rr.dlen))) in get_txt_records()
411 dst = list[j++]; in get_txt_records()
431 list[j] = NULL; in get_txt_records()
436 return (list); in get_txt_records()
440 free(list[i]); in get_txt_records()
441 free(list); in get_txt_records()