Searched defs:timer_q (Results 1 - 1 of 1) 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;

Completed in 148 milliseconds