Home
last modified time | relevance | path

Searched refs:btstack_run_loop_base_timers (Results 1 – 4 of 4) sorted by relevance

/btstack/src/
H A Dbtstack_run_loop.c63 btstack_linked_list_t btstack_run_loop_base_timers; variable
68 btstack_run_loop_base_timers = NULL; in btstack_run_loop_base_init()
90 … return btstack_linked_list_remove(&btstack_run_loop_base_timers, (btstack_linked_item_t *) timer); in btstack_run_loop_base_remove_timer()
95 for (it = (btstack_linked_item_t *) &btstack_run_loop_base_timers; it->next ; it = it->next){ in btstack_run_loop_base_add_timer()
124 while (btstack_run_loop_base_timers) { in btstack_run_loop_base_process_timers()
125 btstack_timer_source_t * timer = (btstack_timer_source_t *) btstack_run_loop_base_timers; in btstack_run_loop_base_process_timers()
137 for (it = (btstack_linked_item_t *) btstack_run_loop_base_timers; it ; it = it->next){ in btstack_run_loop_base_dump_timer()
149 if (btstack_run_loop_base_timers == NULL) return -1; in btstack_run_loop_base_get_time_until_timeout()
150 btstack_timer_source_t * timer = (btstack_timer_source_t *) btstack_run_loop_base_timers; in btstack_run_loop_base_get_time_until_timeout()
H A Dbtstack_run_loop.h133 extern btstack_linked_list_t btstack_run_loop_base_timers;
/btstack/test/embedded/
H A Drun_loop_base_test.cpp62 CHECK(btstack_run_loop_base_timers != NULL); in TEST()
65 CHECK(btstack_run_loop_base_timers == NULL); in TEST()
76 CHECK(btstack_run_loop_base_timers != NULL); in TEST()
86 CHECK(btstack_run_loop_base_timers == NULL); in TEST()
/btstack/platform/qt/
H A Dbtstack_run_loop_qt.cpp357 for (it = (btstack_linked_item_t *) btstack_run_loop_base_timers; it ; it = it->next){ in btstack_run_loop_qt_dump_timer()