Lines Matching defs:cpu_map_idx
347 int evsel__enable_cpu(struct evsel *evsel, int cpu_map_idx);
350 int evsel__disable_cpu(struct evsel *evsel, int cpu_map_idx);
352 int evsel__open_per_cpu(struct evsel *evsel, struct perf_cpu_map *cpus, int cpu_map_idx);
387 int evsel__read_counter(struct evsel *evsel, int cpu_map_idx, int thread);
389 int __evsel__read_on_cpu(struct evsel *evsel, int cpu_map_idx, int thread, bool scale);
395 * @cpu_map_idx - CPU of interest
398 static inline int evsel__read_on_cpu(struct evsel *evsel, int cpu_map_idx, int thread)
400 return __evsel__read_on_cpu(evsel, cpu_map_idx, thread, false);
407 * @cpu_map_idx - CPU of interest
410 static inline int evsel__read_on_cpu_scaled(struct evsel *evsel, int cpu_map_idx, int thread)
412 return __evsel__read_on_cpu(evsel, cpu_map_idx, thread, true);