Searched refs:thread_t (Results 1 - 25 of 36) sorted by relevance

12

/system/bt/osi/include/
H A Dthread.h27 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
35 thread_t *thread_new(const char *name);
38 thread_t *thread_new_sized(const char *name, size_t size);
43 void thread_free(thread_t *thread);
48 void thread_join(thread_t *thread);
55 bool thread_post(thread_t *thread, thread_fn func, void *context);
60 void thread_stop(thread_t *thread);
65 bool thread_set_priority(thread_t *thread, int priority);
69 bool thread_is_self(const thread_t *threa
[all...]
H A Dalarm.h26 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
101 void alarm_register_processing_queue(fixed_queue_t *queue, thread_t *thread);
H A Deager_reader.h67 thread_t* eager_reader_get_read_thread(const eager_reader_t *reader);
/system/bt/btif/include/
H A Dbtif_sock_sco.h23 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
25 bt_status_t btsock_sco_init(thread_t *thread);
/system/bt/hci/include/
H A Dlow_power_manager.h23 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
28 void (*init)(thread_t *post_thread);
H A Dhci_hal.h51 bool (*init)(const hci_hal_callbacks_t *upper_callbacks, thread_t *upper_thread);
/system/bt/osi/test/
H A Dthread_test.cpp16 thread_t *thread = thread_new("test_thread");
22 thread_t *thread = thread_new("test_thread");
27 thread_t *thread = thread_new("test_name");
33 thread_t *thread = thread_new("0123456789abcdef");
39 thread_t *thread = thread_new("0123456789abcdefg");
45 thread_t *thread = (thread_t *)context;
50 thread_t *thread = thread_new("test_thread");
56 thread_t *thread = thread_new("test_thread");
H A Dfuture_test.cpp42 thread_t *worker_thread = thread_new("worker thread");
H A Deager_reader_test.cpp126 thread_t *read_thread = thread_new("read_thread");
139 thread_t *read_thread = thread_new("read_thread");
H A Dsemaphore_test.cpp75 thread_t *thread = thread_new("semaphore_test_thread");
H A Dalarm_test.cpp307 thread_t *thread = thread_new("timers.test_callback_ordering_on_queue.thread");
344 thread_t *thread =
402 thread_t *thread =
/system/bt/osi/src/
H A Dthread.c39 struct thread_t { struct
49 thread_t *thread;
64 thread_t *thread_new_sized(const char *name, size_t work_queue_capacity) {
68 thread_t *ret = osi_calloc(sizeof(thread_t));
105 thread_t *thread_new(const char *name) {
109 void thread_free(thread_t *thread) {
121 void thread_join(thread_t *thread) {
131 bool thread_post(thread_t *thread, thread_fn func, void *context) {
148 void thread_stop(thread_t *threa
[all...]
H A Deager_reader.c53 thread_t *inbound_read_thread;
209 thread_t* eager_reader_get_read_thread(const eager_reader_t *reader) {
/system/bt/btcore/include/
H A Dmodule.h65 thread_t *callback_thread,
/system/bt/stack/btu/
H A Dbtu_init.c62 thread_t *bt_workqueue_thread;
H A Dbtu_task.c103 extern thread_t *bt_workqueue_thread;
/system/bt/hci/src/
H A Dhci_hal_h4.c46 static thread_t *thread; // Not owned by us
59 static bool hal_init(const hci_hal_callbacks_t *upper_callbacks, thread_t *upper_thread) {
H A Dhci_hal_mct.c41 static thread_t *thread; // Not owned by us
53 static bool hal_init(const hci_hal_callbacks_t *upper_callbacks, thread_t *upper_thread) {
H A Dlow_power_manager.c69 static thread_t *thread;
79 static void init(thread_t *post_thread) {
/system/bt/hci/test/
H A Dlow_power_manager_test.cpp41 static thread_t *thread;
/system/bt/btcore/src/
H A Dmodule.c197 thread_t *lifecycle_thread;
198 thread_t *callback_thread; // we don't own this thread
208 thread_t *callback_thread,
/system/core/libbacktrace/
H A Dbacktrace_test.cpp67 struct thread_t { struct
75 thread_t thread;
193 thread_t* thread = reinterpret_cast<thread_t*>(data);
499 thread_t* thread = reinterpret_cast<thread_t*>(data);
511 thread_t thread_data = { 0, 0, 0, nullptr };
561 thread_t thread_data = { 0, 0, 0, nullptr };
590 thread_t* thread = reinterpret_cast<thread_t*>(dat
[all...]
/system/bt/btif/src/
H A Dbtif_sock_sco.c90 static thread_t *thread; // Not owned, do not free.
92 bt_status_t btsock_sco_init(thread_t *thread_) {
H A Dbtif_sock.c43 static thread_t *thread;
H A Dstack_manager.c40 static thread_t *management_thread;

Completed in 1569 milliseconds

12