Searched defs:thread_t (Results 1 - 6 of 6) sorted by relevance

/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/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);
/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);
/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...]
/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...]

Completed in 174 milliseconds