Lines Matching refs:evsel
76 void perf_evlist__remove(struct perf_evlist *evlist, struct perf_evsel *evsel);
98 void perf_evlist__id_add(struct perf_evlist *evlist, struct perf_evsel *evsel,
153 struct perf_evsel *evsel);
155 struct perf_evsel *evsel);
157 struct perf_evsel *evsel, int idx);
160 struct perf_evsel *evsel);
230 #define __evlist__for_each(list, evsel) \ argument
231 list_for_each_entry(evsel, list, node)
238 #define evlist__for_each(evlist, evsel) \ argument
239 __evlist__for_each(&(evlist)->entries, evsel)
246 #define __evlist__for_each_continue(list, evsel) \ argument
247 list_for_each_entry_continue(evsel, list, node)
254 #define evlist__for_each_continue(evlist, evsel) \ argument
255 __evlist__for_each_continue(&(evlist)->entries, evsel)
262 #define __evlist__for_each_reverse(list, evsel) \ argument
263 list_for_each_entry_reverse(evsel, list, node)
270 #define evlist__for_each_reverse(evlist, evsel) \ argument
271 __evlist__for_each_reverse(&(evlist)->entries, evsel)
279 #define __evlist__for_each_safe(list, tmp, evsel) \ argument
280 list_for_each_entry_safe(evsel, tmp, list, node)
288 #define evlist__for_each_safe(evlist, tmp, evsel) \ argument
289 __evlist__for_each_safe(&(evlist)->entries, tmp, evsel)