Lines Matching refs:evsel
91 void perf_evlist__id_add(struct perf_evlist *evlist, struct perf_evsel *evsel,
137 struct perf_evsel *evsel);
139 struct perf_evsel *evsel);
141 struct perf_evsel *evsel, int idx);
144 struct perf_evsel *evsel);
220 #define __evlist__for_each(list, evsel) \ argument
221 list_for_each_entry(evsel, list, node)
228 #define evlist__for_each(evlist, evsel) \ argument
229 __evlist__for_each(&(evlist)->entries, evsel)
236 #define __evlist__for_each_continue(list, evsel) \ argument
237 list_for_each_entry_continue(evsel, list, node)
244 #define evlist__for_each_continue(evlist, evsel) \ argument
245 __evlist__for_each_continue(&(evlist)->entries, evsel)
252 #define __evlist__for_each_reverse(list, evsel) \ argument
253 list_for_each_entry_reverse(evsel, list, node)
260 #define evlist__for_each_reverse(evlist, evsel) \ argument
261 __evlist__for_each_reverse(&(evlist)->entries, evsel)
269 #define __evlist__for_each_safe(list, tmp, evsel) \ argument
270 list_for_each_entry_safe(evsel, tmp, list, node)
278 #define evlist__for_each_safe(evlist, tmp, evsel) \ argument
279 __evlist__for_each_safe(&(evlist)->entries, tmp, evsel)