HomeSort by relevance Sort by last modified time
    Searched refs:timer_queue (Results 1 - 8 of 8) sorted by null

  /external/bluetooth/bluedroid/bta/sys/
ptim.c 43 GKI_init_timer_list(&p_cb->timer_queue);
83 GKI_update_timer_list(&p_cb->timer_queue, GKI_TICKS_TO_MS(period_in_ticks));
88 while((p_cb->timer_queue.p_first) && (p_cb->timer_queue.p_first->ticks <= 0))
91 p_tle = p_cb->timer_queue.p_first;
92 GKI_remove_from_timer_list(&p_cb->timer_queue, p_tle);
111 if (p_cb->timer_queue.p_first == NULL)
130 if (p_cb->timer_queue.p_first == NULL)
136 GKI_remove_from_timer_list(&p_cb->timer_queue, p_tle);
142 GKI_add_to_timer_list(&p_cb->timer_queue, p_tle)
    [all...]
  /external/libnfc-nci/src/nfa/sys/
nfa_sys_ptim.c 45 GKI_init_timer_list (&p_cb->timer_queue);
85 GKI_update_timer_list (&p_cb->timer_queue, GKI_TICKS_TO_MS (period_in_ticks));
90 while ((p_cb->timer_queue.p_first) && (p_cb->timer_queue.p_first->ticks <= 0))
93 p_tle = p_cb->timer_queue.p_first;
95 GKI_remove_from_timer_list (&p_cb->timer_queue, p_tle);
114 if (p_cb->timer_queue.p_first == NULL)
136 if (p_cb->timer_queue.p_first == NULL)
143 GKI_remove_from_timer_list (&p_cb->timer_queue, p_tle);
148 GKI_add_to_timer_list (&p_cb->timer_queue, p_tle)
    [all...]
  /external/bluetooth/bluedroid/bta/include/
ptim.h 35 TIMER_LIST_Q timer_queue; /* GKI timer queue */ member in struct:__anon5538
  /external/libnfc-nci/src/nfa/int/
nfa_sys_ptim.h 36 TIMER_LIST_Q timer_queue; /* GKI timer queue */ member in struct:__anon28067
  /external/libnfc-nci/src/nfc/nfc/
nfc_task.c 64 if (nfc_cb.timer_queue.p_first == NULL)
83 GKI_remove_from_timer_list (&nfc_cb.timer_queue, p_tle);
88 GKI_add_to_timer_list (&nfc_cb.timer_queue, p_tle);
102 return (GKI_get_remaining_ticks (&nfc_cb.timer_queue, p_tle));
118 GKI_update_timer_list (&nfc_cb.timer_queue, 1);
120 while ((nfc_cb.timer_queue.p_first) && (!nfc_cb.timer_queue.p_first->ticks))
122 p_tle = nfc_cb.timer_queue.p_first;
123 GKI_remove_from_timer_list (&nfc_cb.timer_queue, p_tle);
142 if (nfc_cb.timer_queue.p_first == NULL
    [all...]
  /external/bluetooth/bluedroid/stack/btu/
btu_task.c 337 if (GKI_timer_queue_is_empty(&btu_cb.timer_queue)) {
400 GKI_update_timer_list (&btu_cb.timer_queue, 1);
402 while (!GKI_timer_queue_is_empty(&btu_cb.timer_queue)) {
403 TIMER_LIST_ENT *p_tle = GKI_timer_getfirst(&btu_cb.timer_queue);
407 GKI_remove_from_timer_list(&btu_cb.timer_queue, p_tle);
545 if (btu_cb.timer_queue.p_first == NULL)
653 if (btu_cb.timer_queue.p_first == NULL)
672 GKI_remove_from_timer_list (&btu_cb.timer_queue, p_tle);
678 GKI_add_to_timer_list (&btu_cb.timer_queue, p_tle);
693 return(GKI_get_remaining_ticks (&btu_cb.timer_queue, p_tle))
    [all...]
  /external/bluetooth/bluedroid/stack/include/
btu.h 233 TIMER_LIST_Q timer_queue; /* Timer queue for normal BTU task (1 second) */ member in struct:__anon6134
  /external/libnfc-nci/src/nfc/int/
nfc_int.h 173 TIMER_LIST_Q timer_queue; /* 1-sec timer event queue */ member in struct:__anon28170

Completed in 199 milliseconds