Lines Matching refs:list
65 struct property *chain_property(struct property *first, struct property *list)
69 first->next = list;
157 /* Pop the property off the list */
193 /* Pop the child node off the list */
258 struct node *chain_node(struct node *first, struct node *list)
262 first->next_sibling = list;
371 struct reserve_info *list)
375 first->next = list;
379 struct reserve_info *add_reserve_entry(struct reserve_info *list,
386 if (! list)
389 for (last = list; last->next; last = last->next)
394 return list;