Lines Matching defs:thread
212 void evsel__compute_deltas(struct evsel *evsel, int cpu, int thread,
376 int evsel__read_counter(struct evsel *evsel, int cpu_map_idx, int thread);
378 int __evsel__read_on_cpu(struct evsel *evsel, int cpu_map_idx, int thread, bool scale);
381 * evsel__read_on_cpu - Read out the results on a CPU and thread
385 * @thread - thread of interest
387 static inline int evsel__read_on_cpu(struct evsel *evsel, int cpu_map_idx, int thread)
389 return __evsel__read_on_cpu(evsel, cpu_map_idx, thread, false);
393 * evsel__read_on_cpu_scaled - Read out the results on a CPU and thread, scaled
397 * @thread - thread of interest
399 static inline int evsel__read_on_cpu_scaled(struct evsel *evsel, int cpu_map_idx, int thread)
401 return __evsel__read_on_cpu(evsel, cpu_map_idx, thread, true);