Lines Matching refs:datas

123 start_threads(void *(*func)(void *), struct thread_data *datas, int num_threads)  in start_threads()  argument
134 ret = pthread_create(&threads[i], &attr, func, (void *)&datas[i]); in start_threads()
201 tg_id_to_index(struct thread_data *datas, int num_datas, uint64_t tg_id) in tg_id_to_index() argument
205 if (tg_id == datas[i].tg_id) { in tg_id_to_index()
214 …workload_id_tg_flags_tracepoints(char *trace_path, int num_workload_ids, struct thread_data *datas) in search_for_workload_id_tg_flags_tracepoints() argument
230 int workload_ind = tg_id_to_index(datas, num_workload_ids, tg_id); in search_for_workload_id_tg_flags_tracepoints()
245 int workload_ind = tg_id_to_index(datas, num_workload_ids, tg_id); in search_for_workload_id_tg_flags_tracepoints()
256 int workload_ind = tg_id_to_index(datas, num_workload_ids, new_tg_id); in search_for_workload_id_tg_flags_tracepoints()
291 …__block struct thread_data *datas = (struct thread_data *)calloc(num_workload_ids, sizeof(struct t… variable
293 search_for_workload_id_tg_flags_tracepoints(filepath, num_workload_ids, datas);
305 datas[i].wi_handle = wi_handles[i];
307 __block pthread_t *threads = start_threads(join_workload_fn, datas, num_workload_ids);
335 …ch_for_pid_based_tg_flags_tracepoints(char *trace_path, int num_threads, struct thread_data *datas) in search_for_pid_based_tg_flags_tracepoints() argument
352 int data = tg_id_to_index(datas, num_workload_ids, tg_id); in search_for_pid_based_tg_flags_tracepoints()
401 …__block struct thread_data *datas = (struct thread_data *)calloc(num_threads, sizeof(struct thread… variable
403 search_for_pid_based_tg_flags_tracepoints(filepath, num_threads, datas);
409 __block pthread_t *threads = start_threads(join_leave_pid_based, datas, num_threads);