Home | History | Annotate | Download | only in tools

Lines Matching defs:list_element

33  * @type The container type ie what you allocated that has the list_element structure in it.
34 * @name The name of the field that is the list_element
58 typedef struct list_element list_element;
83 struct list_element {
84 list_element *next;
88 list_element *head;
89 list_element *tail;
90 void (*freefn)(list_element *e);
126 list_element listify;
135 list_element listify;
155 list_element listify;
158 static void input_file_list_freefn(list_element *e);
159 static void line_order_list_freefn(list_element *e);
225 void list_append(list *list, list_element *e) {
245 list_element *tmp;
246 list_element *cursor = list->head;
260 static void line_order_list_freefn(list_element *e) {
266 static void input_file_list_freefn(list_element *e) {
627 list_element *cursor;
809 list_element *cursor;
1132 list_element *cursor;
1141 list_element *cursor, *v;
1177 list_element *cursor;