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

/external/bluetooth/bluedroid/osi/include/
H A Dthread.h23 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
31 thread_t *thread_new(const char *name);
36 void thread_free(thread_t *thread);
42 bool thread_post(thread_t *thread, thread_fn func, void *context);
47 void thread_stop(thread_t *thread);
50 const char *thread_name(const thread_t *thread);
/external/bluetooth/bluedroid/osi/src/
H A Dthread.c34 struct thread_t { struct
43 thread_t *thread;
58 thread_t *thread_new(const char *name) {
62 thread_t *ret = calloc(1, sizeof(thread_t));
98 void thread_free(thread_t *thread) {
109 bool thread_post(thread_t *thread, thread_fn func, void *context) {
130 void thread_stop(thread_t *thread) {
135 const char *thread_name(const thread_t *thread) {
144 thread_t *threa
[all...]
/external/lldb/include/lldb/
H A Dlldb-types.h27 // lldb::thread_t The native thread type for spawned threads on the system
47 typedef pthread_t thread_t; // Host thread type typedef in namespace:lldb
57 const lldb::thread_t lldb_invalid_host_thread_const = { NULL, 0 } ;
63 #define LLDB_INVALID_HOST_THREAD ((lldb::thread_t)NULL)

Completed in 107 milliseconds