Lines Matching refs:thread_t
249 bool thread_is_self(const thread_t* thread) { in thread_is_self()
253 bool thread_post(thread_t* thread, thread_fn func, void* context) { in thread_post()
257 bool thread_set_priority(thread_t* thread, int priority) { in thread_set_priority()
261 bool thread_set_rt_priority(thread_t* thread, int priority) { in thread_set_rt_priority()
265 const char* thread_name(const thread_t* thread) { in thread_name()
269 reactor_t* thread_get_reactor(const thread_t* thread) { in thread_get_reactor()
273 thread_t* thread_new(const char* name) { in thread_new()
277 thread_t* thread_new_sized(const char* name, size_t work_queue_capacity) { in thread_new_sized()
281 void thread_free(thread_t* thread) { mock_function_count_map[__func__]++; } in thread_free()
282 void thread_join(thread_t* thread) { mock_function_count_map[__func__]++; } in thread_join()
283 void thread_stop(thread_t* thread) { mock_function_count_map[__func__]++; } in thread_stop()