Lines Matching refs:p_first
634 p_timer_listq->p_first = NULL; in GKI_init_timer_list()
688 p_tle = p_timer_listq->p_first; in GKI_update_timer_list()
756 p_tle = p_timer_listq->p_first; in GKI_get_remaining_ticks()
818 if (p_timer_listq->p_first == NULL) in GKI_add_to_timer_list()
819 p_timer_listq->p_first = p_tle; in GKI_add_to_timer_list()
839 p_temp = p_timer_listq->p_first; in GKI_add_to_timer_list()
850 if (p_temp == p_timer_listq->p_first) in GKI_add_to_timer_list()
852 p_tle->p_next = p_timer_listq->p_first; in GKI_add_to_timer_list()
853 p_timer_listq->p_first->p_prev = p_tle; in GKI_add_to_timer_list()
854 p_timer_listq->p_first = p_tle; in GKI_add_to_timer_list()
908 if (p_tle == NULL || p_tle->in_use == FALSE || p_timer_listq->p_first == NULL) in GKI_remove_from_timer_list()
927 if (p_timer_listq->p_first == p_tle) in GKI_remove_from_timer_list()
929 p_timer_listq->p_first = p_tle->p_next; in GKI_remove_from_timer_list()
931 if (p_timer_listq->p_first != NULL) in GKI_remove_from_timer_list()
932 p_timer_listq->p_first->p_prev = NULL; in GKI_remove_from_timer_list()
971 if (p_timer_listq->p_first == NULL && p_timer_listq->p_last == NULL) in GKI_remove_from_timer_list()