Searched refs:timer_q (Results 1 - 2 of 2) sorted by relevance

/external/bluetooth/bluedroid/gki/common/
H A Dgki_time.c496 void GKI_init_timer_list(TIMER_LIST_Q *timer_q) { argument
497 timer_q->p_first = NULL;
498 timer_q->p_last = NULL;
501 bool GKI_timer_queue_is_empty(const TIMER_LIST_Q *timer_q) { argument
502 assert(timer_q != NULL);
503 return (timer_q->p_first == NULL);
506 TIMER_LIST_ENT *GKI_timer_getfirst(const TIMER_LIST_Q *timer_q) { argument
507 assert(timer_q != NULL);
508 return timer_q->p_first;
H A Dgki.h197 GKI_API extern BOOLEAN GKI_timer_queue_is_empty(const TIMER_LIST_Q *timer_q);
198 GKI_API extern TIMER_LIST_ENT *GKI_timer_getfirst(const TIMER_LIST_Q *timer_q);

Completed in 632 milliseconds