Home | History | Annotate | Download | only in lib

Lines Matching refs:head

41   l->head = NULL;
80 list->head = ne;
81 list->head->prev = NULL;
82 list->head->next = NULL;
87 ne->next = e?e->next:list->head;
90 list->head->prev = ne;
91 list->head = ne;
118 if(e == list->head) {
119 list->head = e->next;
121 if(list->head == NULL)
174 if(e == list->head) {
175 list->head = e->next;
177 if(list->head == NULL)
194 to_list->head = e;
195 to_list->head->prev = NULL;
196 to_list->head->next = NULL;