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

/system/bt/osi/test/
H A Dfuture_test.cpp42 thread_t *worker_thread = thread_new("worker thread"); local
43 thread_post(worker_thread, post_to_future, future);
47 thread_free(worker_thread);
/system/bt/btif/src/
H A Dbtif_media_task.c408 static thread_t *worker_thread; variable
883 worker_thread = thread_new("media_worker");
884 if (worker_thread == NULL)
888 thread_get_reactor(worker_thread),
892 thread_post(worker_thread, btif_media_thread_init, NULL);
913 thread_post(worker_thread, btif_media_thread_cleanup, NULL);
914 thread_free(worker_thread);
915 worker_thread = NULL;
2190 if(worker_thread != NULL)
2191 thread_post(worker_thread, btif_media_task_avk_handle_time
[all...]

Completed in 5773 milliseconds