HomeSort by relevance Sort by last modified time
    Searched refs:thread_t (Results 1 - 25 of 56) sorted by null

1 2 3

  /system/bt/osi/include/
thread.h 27 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
36 thread_t* thread_new(const char* name);
39 thread_t* thread_new_sized(const char* name, size_t size);
44 void thread_free(thread_t* thread);
49 void thread_join(thread_t* thread);
56 bool thread_post(thread_t* thread, thread_fn func, void* context);
61 void thread_stop(thread_t* thread);
66 bool thread_set_priority(thread_t* thread, int priority);
73 bool thread_set_rt_priority(thread_t* thread, int priority)
    [all...]
alarm.h 27 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
  /system/bt/btif/include/
btif_sock_sco.h 23 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/
low_power_manager.h 23 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
29 void (*init)(thread_t* post_thread);
hci_hal.h 54 thread_t* upper_thread);
  /system/bt/osi/test/
thread_test.cc 14 thread_t* thread = thread_new("test_thread");
20 thread_t* thread = thread_new("test_thread");
25 thread_t* thread = thread_new("test_name");
31 thread_t* thread = thread_new("0123456789abcdef");
37 thread_t* thread = thread_new("0123456789abcdefg");
43 thread_t* thread = (thread_t*)context;
48 thread_t* thread = thread_new("test_thread");
54 thread_t* thread = thread_new("test_thread");
future_test.cc 41 thread_t* worker_thread = thread_new("worker thread");
semaphore_test.cc 74 thread_t* thread = thread_new("semaphore_test_thread");
  /system/bt/osi/src/
thread.cc 42 struct thread_t { struct
52 thread_t* thread;
67 thread_t* thread_new_sized(const char* name, size_t work_queue_capacity) {
71 thread_t* ret = static_cast<thread_t*>(osi_calloc(sizeof(thread_t)));
104 thread_t* thread_new(const char* name) {
108 void thread_free(thread_t* thread) {
119 void thread_join(thread_t* thread) {
126 bool thread_post(thread_t* thread, thread_fn func, void* context)
    [all...]
  /external/autotest/client/tests/monotonic_time/src/
threads.c 24 } thread_t; typedef in typeref:struct:thread
26 static thread_t threads[MAX_THREADS];
35 thread_t *thread = arg;
58 thread_t *thread;
93 thread_t *thread;
  /external/boringssl/src/crypto/
thread_test.cc 33 typedef HANDLE thread_t; typedef
43 static int run_thread(thread_t *out_thread, void (*thread_func)(void)) {
54 static int wait_for_thread(thread_t thread) {
64 typedef pthread_t thread_t; typedef
72 static int run_thread(thread_t *out_thread, void (*thread_func)(void)) {
77 static int wait_for_thread(thread_t thread) {
119 thread_t thread1, thread2;
161 thread_t thread;
192 thread_t thread;
  /system/bt/btcore/include/
module.h 67 thread_t* callback_thread,
  /system/bt/stack/btu/
btu_init.cc 45 thread_t* bt_workqueue_thread;
btu_task.cc 46 extern thread_t* bt_workqueue_thread;
50 static thread_t* message_loop_thread_;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_lwp.h 31 thread_t tid;
42 thread_t tid;
thread_solaris.h 41 thread_t tid;
  /external/python/cpython2/Python/
thread_lwp.h 31 thread_t tid;
42 thread_t tid;
thread_solaris.h 41 thread_t tid;
  /system/bt/btcore/src/
module.cc 165 thread_t* lifecycle_thread;
166 thread_t* callback_thread; // we don't own this thread
175 thread_t* callback_thread,
  /libcore/ojluni/src/main/native/
NativeThread.c 96 ret = thr_kill((thread_t)thread, INTERRUPT_SIGNAL);
  /system/bt/stack/test/
stack_btu_test.cc 85 thread_t* bt_workqueue_thread;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
thread_db.h 243 typedef pthread_t thread_t; typedef
264 thread_t ti_tid; /* Thread ID returned by
  /system/bt/btif/src/
btif_sock_sco.cc 84 static thread_t* thread; // Not owned, do not free.
86 bt_status_t btsock_sco_init(thread_t* thread_) {
stack_manager.cc 40 static thread_t* management_thread;
  /system/core/libbacktrace/
backtrace_test.cpp 75 struct thread_t { struct
83 thread_t thread;
235 thread_t* thread = reinterpret_cast<thread_t*>(data);
553 thread_t* thread = reinterpret_cast<thread_t*>(data);
565 thread_t thread_data = { 0, 0, 0, nullptr };
615 thread_t thread_data = { 0, 0, 0, nullptr };
644 thread_t* thread = reinterpret_cast<thread_t*>(data)
    [all...]

Completed in 249 milliseconds

1 2 3