Lines Matching full:setlist
346 const struct variable_set_list *setlist;
352 for (setlist = current_variable_set_list;
353 setlist != 0; setlist = setlist->next)
355 const struct variable_set *set = setlist->set;
443 chain is replaced with FILE->parent's setlist. If FILE is a double-colon
552 register struct variable_set_list *setlist;
559 setlist = (struct variable_set_list *)
561 setlist->set = set;
562 setlist->next = current_variable_set_list;
564 return setlist;
584 /* Create a new variable set and push it on the current setlist.
612 struct variable_set_list *setlist;
620 /* We're not pointing to the global setlist, so pop this one. */
621 setlist = current_variable_set_list;
622 set = setlist->set;
623 current_variable_set_list = setlist->next;
630 setlist = global_setlist.next;
632 global_setlist.set = setlist->set;
633 global_setlist.next = setlist->next;
637 free ((char *) setlist);
684 setlist (before NULL). If that's not true, arguably we SHOULD die. */