Lines Matching refs:next
40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
322 tmp = tmp->next; in linked_list_search()