Lines Matching defs:p_timer_listq

491 ** Parameters       p_timer_listq   - (input) pointer to the timer list queue object
525 ** Parameters p_timer_listq - (input) pointer to the timer list queue object
535 UINT16 GKI_update_timer_list (TIMER_LIST_Q *p_timer_listq, INT32 num_units_since_last_update)
542 p_tle = p_timer_listq->p_first;
585 ** Parameters p_timer_listq - (input) pointer to the timer list queue object
592 UINT32 GKI_get_remaining_ticks (TIMER_LIST_Q *p_timer_listq, TIMER_LIST_ENT *p_target_tle)
599 p_tle = p_timer_listq->p_first;
632 ** Parameters p_timer_listq - (input) pointer to the timer list queue object
638 void GKI_add_to_timer_list (TIMER_LIST_Q *p_timer_listq, TIMER_LIST_ENT *p_tle)
649 if (p_timer_listq->p_first == NULL)
651 p_timer_listq->p_first = p_tle;
652 p_timer_listq->p_last = p_tle;
657 TIMER_LIST_ENT *i = p_timer_listq->p_first;
668 p_timer_listq->p_last->p_next = p_tle;
669 p_tle->p_prev = p_timer_listq->p_last;
670 p_timer_listq->p_last = p_tle;
681 if (p_timer_listq->p_first == i)
682 p_timer_listq->p_first = p_tle;
693 ** Parameters p_timer_listq - (input) pointer to the timer list queue object
699 BOOLEAN GKI_remove_from_timer_list (TIMER_LIST_Q *p_timer_listq, TIMER_LIST_ENT *p_tle)
704 if (p_tle == NULL || p_timer_listq->p_first == NULL)
720 if (p_timer_listq->p_first == p_tle)
722 p_timer_listq->p_first = p_tle->p_next;
724 if (p_timer_listq->p_first != NULL)
725 p_timer_listq->p_first->p_prev = NULL;
727 if (p_timer_listq->p_last == p_tle)
728 p_timer_listq->p_last = NULL;
732 if (p_timer_listq->p_last == p_tle)
734 p_timer_listq->p_last = p_tle->p_prev;
736 if (p_timer_listq->p_last != NULL)
737 p_timer_listq->p_last->p_next = NULL;