Lines Matching refs:cpu_map_idx
353 int evsel__enable_cpu(struct evsel *evsel, int cpu_map_idx);
356 int evsel__disable_cpu(struct evsel *evsel, int cpu_map_idx);
359 struct perf_cpu_map *cpus, int cpu_map_idx,
361 int evsel__open_per_cpu(struct evsel *evsel, struct perf_cpu_map *cpus, int cpu_map_idx);
396 int evsel__read_counter(struct evsel *evsel, int cpu_map_idx, int thread);
398 int __evsel__read_on_cpu(struct evsel *evsel, int cpu_map_idx, int thread, bool scale);
404 * @cpu_map_idx - CPU of interest
407 static inline int evsel__read_on_cpu(struct evsel *evsel, int cpu_map_idx, int thread)
409 return __evsel__read_on_cpu(evsel, cpu_map_idx, thread, false);
416 * @cpu_map_idx - CPU of interest
419 static inline int evsel__read_on_cpu_scaled(struct evsel *evsel, int cpu_map_idx, int thread)
421 return __evsel__read_on_cpu(evsel, cpu_map_idx, thread, true);