Searched defs:callback_thread (Results 1 - 2 of 2) sorted by relevance

/system/bt/btcore/src/
H A Dmodule.c182 thread_t *callback_thread; // we don't own this thread member in struct:__anon580
192 thread_t *callback_thread,
198 wrapper->callback_thread = callback_thread;
212 thread_post(wrapper->callback_thread, post_result_to_callback, wrapper);
190 module_start_up_callbacked_wrapper( const module_t *module, thread_t *callback_thread, thread_fn callback) argument
/system/bt/osi/src/
H A Dalarm.c78 // All alarm callbacks are dispatched from |callback_thread|
79 static thread_t *callback_thread; variable
206 thread_free(callback_thread);
207 callback_thread = NULL;
245 callback_thread = thread_new("alarm_callbacks");
246 if (!callback_thread) {
251 thread_set_priority(callback_thread, CALLBACK_THREAD_PRIORITY_HIGH);
252 thread_post(callback_thread, callback_dispatch, NULL);
361 // Function running on |callback_thread| that dispatches alarm callbacks upon

Completed in 446 milliseconds