Lines Matching refs:tl
123 struct tuple_list *tl; in freecis() local
126 while ((tl = tlist) != 0) { in freecis()
127 tlist = tl->next; in freecis()
128 while ((tp = tl->tuples) != 0) { in freecis()
129 tl->tuples = tp->next; in freecis()
133 free(tl); in freecis()
194 struct tuple_list *tl = 0, *last_tl; in read_tuples() local
223 tl = read_one_tuplelist(fd, flag, offs); in read_tuples()
224 last_tl->next = tl; in read_tuples()
225 last_tl = tl; in read_tuples()
227 } while (tl); in read_tuples()
251 struct tuple_list *tl; in read_one_tuplelist() local
257 for (tl = tlist; tl; tl = tl->next) in read_one_tuplelist()
258 if (tl->offs == offs && tl->flags == (flags & MDF_ATTR)) in read_one_tuplelist()
260 tl = xmalloc(sizeof(*tl)); in read_one_tuplelist()
261 tl->offs = offs; in read_one_tuplelist()
262 tl->flags = flags & MDF_ATTR; in read_one_tuplelist()
320 if (tl->tuples == NULL) { in read_one_tuplelist()
321 tl->tuples = tp; in read_one_tuplelist()
326 return (tl); in read_one_tuplelist()
359 find_tuple_in_list(struct tuple_list *tl, unsigned char code) in find_tuple_in_list() argument
363 for (tp = tl->tuples; tp; tp = tp->next) in find_tuple_in_list()