Lines Matching defs:list
85 // Remove first element from the list and return it.
99 // Add new node at the beginning of the list.
109 // Add new node at tail of list.
117 // Reverse list order.
118 static struct arg_list *llist_rev(struct arg_list *list)
122 while (list) {
123 struct arg_list *next = list->next;
125 list->next = rev;
126 rev = list;
127 list = next;
360 // Add module in probes list, if not loaded.