Home | History | Annotate | Download | only in utils

Lines Matching refs:list_element

39 typedef struct list_element {
40 struct list_element* next;
41 struct list_element* prev;
44 }list_element;
47 list_element* p_head;
48 list_element* p_tail;
126 list_element* elem = (list_element*)malloc(sizeof(list_element));
140 list_element* tmp = p_list->p_head;
183 list_element* tmp = p_list->p_tail;
243 list_element* tmp = p_list->p_head->next;
285 list_element* tmp = p_list->p_head;