Lines Matching full:global_setlist
142 static struct variable_set_list global_setlist
144 struct variable_set_list *current_variable_set_list = &global_setlist;
477 l->next = &global_setlist;
587 directly to the global_setlist so we need to replace that with the new one.
594 if (current_variable_set_list->next == &global_setlist)
600 current_variable_set_list->set = global_setlist.set;
601 global_setlist.set = set;
602 current_variable_set_list->next = global_setlist.next;
603 global_setlist.next = current_variable_set_list;
604 current_variable_set_list = &global_setlist;
618 if (current_variable_set_list != &global_setlist)
627 /* This set is the one in the global_setlist, but there is another global
628 set beyond that. We want to copy that set to global_setlist, then
629 delete what used to be in global_setlist. */
630 setlist = global_setlist.next;
631 set = global_setlist.set;
632 global_setlist.set = setlist->set;
633 global_setlist.next = setlist->next;
686 while (setlist1 != &global_setlist && to != &global_setlist)
697 if (setlist1 != &global_setlist)