Lines Matching refs:osi_thread_t
37 osi_thread_t *thread;
52 osi_thread_t *thread = start->thread; in osi_thread_run()
84 static int osi_thread_join(osi_thread_t *thread, uint32_t wait_ms) in osi_thread_join()
90 static void osi_thread_stop(osi_thread_t *thread) in osi_thread_stop()
110 osi_thread_t *osi_thread_create(const char *name, size_t stack_size, int priority, osi_thread_core_… in osi_thread_create()
121 osi_thread_t *thread = (osi_thread_t *)osi_malloc(sizeof(osi_thread_t)); in osi_thread_create()
200 void osi_thread_free(osi_thread_t *thread) in osi_thread_free()
229 bool osi_thread_post(osi_thread_t *thread, osi_thread_func_t func, void *context, int queue_idx, ui… in osi_thread_post()
255 bool osi_thread_set_priority(osi_thread_t *thread, int priority) in osi_thread_set_priority()
263 const char *osi_thread_name(osi_thread_t *thread) in osi_thread_name()
270 int osi_thread_queue_wait_size(osi_thread_t *thread, int wq_idx) in osi_thread_queue_wait_size()