Lines Matching refs:p_last
646 p_timer_listq->p_last = NULL; in GKI_init_timer_list()
829 if (p_timer_listq->p_last != NULL) in GKI_add_to_timer_list()
830 p_timer_listq->p_last->p_next = p_tle; in GKI_add_to_timer_list()
832 p_tle->p_prev = p_timer_listq->p_last; in GKI_add_to_timer_list()
836 p_timer_listq->p_last = p_tle; in GKI_add_to_timer_list()
940 if (p_timer_listq->p_last == p_tle) in GKI_remove_from_timer_list()
941 p_timer_listq->p_last = NULL; in GKI_remove_from_timer_list()
945 if (p_timer_listq->p_last == p_tle) in GKI_remove_from_timer_list()
947 p_timer_listq->p_last = p_tle->p_prev; in GKI_remove_from_timer_list()
949 if (p_timer_listq->p_last != NULL) in GKI_remove_from_timer_list()
950 p_timer_listq->p_last->p_next = NULL; in GKI_remove_from_timer_list()
977 if (p_timer_listq->p_first == NULL && p_timer_listq->p_last == NULL) in GKI_remove_from_timer_list()