Lines Matching refs:arg_list
33 struct arg_list *dirs;
35 struct arg_list *probes, *dbase[256];
52 struct arg_list *rnames, *dep;
86 static void *llist_popme(struct arg_list **head)
89 struct arg_list *temp = *head;
100 static void llist_add(struct arg_list **old, void *data)
102 struct arg_list *new = xmalloc(sizeof(struct arg_list));
110 static void llist_add_tail(struct arg_list **head, void *data)
113 *head = xzalloc(sizeof(struct arg_list));
118 static struct arg_list *llist_rev(struct arg_list *list)
120 struct arg_list *rev = NULL;
123 struct arg_list *next = list->next;
140 struct arg_list *temp;
241 struct arg_list *temp;
466 struct arg_list *dirs;
479 TT.dirs = xzalloc(sizeof(struct arg_list));
536 char *real = ((struct arg_list *)llist_pop(&module->rnames))->arg;