Home | History | Annotate | Download | only in utils

Lines Matching full:prev

41    struct list_element* prev;
136 elem->prev = NULL;
147 tmp->prev = p_list->p_head;
186 p_list->p_tail = tmp->prev;
298 if (NULL == tmp->prev) {
301 tmp->prev->next = tmp->next;
305 p_list->p_tail = tmp->prev;
307 tmp->next->prev = tmp->prev;
310 tmp->prev = tmp->next = NULL;