Lines Matching refs:thread_t
180 struct thread_t { struct
199 static thread_t threads[kMaxThreads]; argument
200 static thread_t* last_scheduled;
278 static thread_t* schedule_call(int call_index, int call_num, bool colliding, uint64 copyout_index, …
279 static void handle_completion(thread_t* th);
280 static void copyout_call_results(thread_t* th);
281 static void write_call_output(thread_t* th, bool finished);
282 static void execute_call(thread_t* th);
283 static void thread_create(thread_t* th, int id);
640 thread_t* th = schedule_call(call_index++, call_num, colliding, copyout_index, in execute_one()
680 thread_t* th = &threads[i]; in execute_one()
688 thread_t* th = &threads[i]; in execute_one()
705 thread_t* schedule_call(int call_index, int call_num, bool colliding, uint64 copyout_index, uint64 … in schedule_call()
710 thread_t* th = &threads[i]; in schedule_call()
721 thread_t* th = &threads[i]; in schedule_call()
744 void write_coverage_signal(thread_t* th, uint32* signal_count_pos, uint32* cover_count_pos) in write_coverage_signal()
784 void handle_completion(thread_t* th) in handle_completion()
800 void copyout_call_results(thread_t* th) in copyout_call_results()
832 void write_call_output(thread_t* th, bool finished) in write_call_output()
900 void thread_create(thread_t* th, int id) in thread_create()
914 thread_t* th = (thread_t*)arg; in worker_thread()
927 void execute_call(thread_t* th) in execute_call()