Lines Matching refs:thread
169 void evsel__compute_deltas(struct evsel *evsel, int cpu, int thread,
281 int evsel__read_counter(struct evsel *evsel, int cpu, int thread);
283 int __evsel__read_on_cpu(struct evsel *evsel, int cpu, int thread, bool scale);
286 * evsel__read_on_cpu - Read out the results on a CPU and thread
290 * @thread - thread of interest
292 static inline int evsel__read_on_cpu(struct evsel *evsel, int cpu, int thread)
294 return __evsel__read_on_cpu(evsel, cpu, thread, false);
298 * evsel__read_on_cpu_scaled - Read out the results on a CPU and thread, scaled
302 * @thread - thread of interest
304 static inline int evsel__read_on_cpu_scaled(struct evsel *evsel, int cpu, int thread)
306 return __evsel__read_on_cpu(evsel, cpu, thread, true);