Home | History | Annotate | Download | only in common

Lines Matching refs:p_last

635     p_timer_listq->p_last     = NULL;
823 if (p_timer_listq->p_last != NULL)
824 p_timer_listq->p_last->p_next = p_tle;
826 p_tle->p_prev = p_timer_listq->p_last;
830 p_timer_listq->p_last = p_tle;
934 if (p_timer_listq->p_last == p_tle)
935 p_timer_listq->p_last = NULL;
939 if (p_timer_listq->p_last == p_tle)
941 p_timer_listq->p_last = p_tle->p_prev;
943 if (p_timer_listq->p_last != NULL)
944 p_timer_listq->p_last->p_next = NULL;
971 if (p_timer_listq->p_first == NULL && p_timer_listq->p_last == NULL)