Home | History | Annotate | Download | only in common

Lines Matching full:p_last

646     p_timer_listq->p_last     = NULL;
829 if (p_timer_listq->p_last != NULL)
830 p_timer_listq->p_last->p_next = p_tle;
832 p_tle->p_prev = p_timer_listq->p_last;
836 p_timer_listq->p_last = p_tle;
940 if (p_timer_listq->p_last == p_tle)
941 p_timer_listq->p_last = NULL;
945 if (p_timer_listq->p_last == p_tle)
947 p_timer_listq->p_last = p_tle->p_prev;
949 if (p_timer_listq->p_last != NULL)
950 p_timer_listq->p_last->p_next = NULL;
977 if (p_timer_listq->p_first == NULL && p_timer_listq->p_last == NULL)