Lines Matching defs:list
175 * Emit the list.
233 list_towire(isccc_sexpr_t *list, isc_buffer_t **buffer) {
236 while (list != NULL) {
237 result = value_towire(ISCCC_SEXPR_CAR(list), buffer);
240 list = ISCCC_SEXPR_CDR(list);
660 isccc_sexpr_t *list, *value;
663 list = NULL;
668 isccc_sexpr_free(&list);
671 if (isccc_sexpr_addtolist(&list, value) == NULL) {
673 isccc_sexpr_free(&list);
678 *listp = list;