Lines Matching refs:evsel
119 struct evsel *first = evlist__first(evlist); in evlist__set_id_pos()
127 struct evsel *evsel; in evlist__update_id_pos() local
129 evlist__for_each_entry(evlist, evsel) in evlist__update_id_pos()
130 evsel__calc_id_pos(evsel); in evlist__update_id_pos()
137 struct evsel *pos, *n; in evlist__purge()
167 void evlist__add(struct evlist *evlist, struct evsel *entry) in evlist__add()
177 void evlist__remove(struct evlist *evlist, struct evsel *evsel) in evlist__remove() argument
179 evsel->evlist = NULL; in evlist__remove()
180 perf_evlist__remove(&evlist->core, &evsel->core); in evlist__remove()
186 struct evsel *evsel, *temp, *leader = NULL; in evlist__splice_list_tail() local
188 __evlist__for_each_entry_safe(list, temp, evsel) { in evlist__splice_list_tail()
189 list_del_init(&evsel->core.node); in evlist__splice_list_tail()
190 evlist__add(evlist, evsel); in evlist__splice_list_tail()
191 leader = evsel; in evlist__splice_list_tail()
195 __evlist__for_each_entry_safe(list, temp, evsel) { in evlist__splice_list_tail()
196 if (evsel__has_leader(evsel, leader)) { in evlist__splice_list_tail()
197 list_del_init(&evsel->core.node); in evlist__splice_list_tail()
198 evlist__add(evlist, evsel); in evlist__splice_list_tail()
212 struct evsel *evsel = evlist__find_tracepoint_by_name(evlist, assocs[i].name); in __evlist__set_tracepoints_handlers() local
213 if (evsel == NULL) in __evlist__set_tracepoints_handlers()
217 if (evsel->handler != NULL) in __evlist__set_tracepoints_handlers()
219 evsel->handler = assocs[i].handler; in __evlist__set_tracepoints_handlers()
234 struct evsel *evsel; in __evlist__add_default() local
236 evsel = evsel__new_cycles(precise, PERF_TYPE_HARDWARE, in __evlist__add_default()
238 if (evsel == NULL) in __evlist__add_default()
241 evlist__add(evlist, evsel); in __evlist__add_default()
252 struct evsel *evsel = evsel__new_idx(&attr, evlist->core.nr_entries); in evlist__add_dummy() local
254 if (evsel == NULL) in evlist__add_dummy()
257 evlist__add(evlist, evsel); in evlist__add_dummy()
263 struct evsel *evsel, *n; in evlist__add_attrs() local
268 evsel = evsel__new_idx(attrs + i, evlist->core.nr_entries + i); in evlist__add_attrs()
269 if (evsel == NULL) in evlist__add_attrs()
271 list_add_tail(&evsel->core.node, &head); in evlist__add_attrs()
279 __evlist__for_each_entry_safe(&head, n, evsel) in evlist__add_attrs()
280 evsel__delete(evsel); in evlist__add_attrs()
299 struct evsel *evlist__find_tracepoint_by_id(struct evlist *evlist, int id) in evlist__find_tracepoint_by_id()
301 struct evsel *evsel; in evlist__find_tracepoint_by_id() local
303 evlist__for_each_entry(evlist, evsel) { in evlist__find_tracepoint_by_id()
304 if (evsel->core.attr.type == PERF_TYPE_TRACEPOINT && in evlist__find_tracepoint_by_id()
305 (int)evsel->core.attr.config == id) in evlist__find_tracepoint_by_id()
306 return evsel; in evlist__find_tracepoint_by_id()
312 struct evsel *evlist__find_tracepoint_by_name(struct evlist *evlist, const char *name) in evlist__find_tracepoint_by_name()
314 struct evsel *evsel; in evlist__find_tracepoint_by_name() local
316 evlist__for_each_entry(evlist, evsel) { in evlist__find_tracepoint_by_name()
317 if ((evsel->core.attr.type == PERF_TYPE_TRACEPOINT) && in evlist__find_tracepoint_by_name()
318 (strcmp(evsel->name, name) == 0)) in evlist__find_tracepoint_by_name()
319 return evsel; in evlist__find_tracepoint_by_name()
327 struct evsel *evsel = evsel__newtp(sys, name); in evlist__add_newtp() local
329 if (IS_ERR(evsel)) in evlist__add_newtp()
332 evsel->handler = handler; in evlist__add_newtp()
333 evlist__add(evlist, evsel); in evlist__add_newtp()
337 static int evlist__nr_threads(struct evlist *evlist, struct evsel *evsel) in evlist__nr_threads() argument
339 if (evsel->core.system_wide) in evlist__nr_threads()
349 .evsel = evlist__first(evlist), in evlist__cpu_begin()
360 itr.cpu_map_idx = perf_cpu_map__idx(itr.evsel->core.cpus, itr.cpu); in evlist__cpu_begin()
373 while (evlist_cpu_itr->evsel != evlist__last(evlist_cpu_itr->container)) { in evlist_cpu_iterator__next()
374 evlist_cpu_itr->evsel = evsel__next(evlist_cpu_itr->evsel); in evlist_cpu_iterator__next()
376 perf_cpu_map__idx(evlist_cpu_itr->evsel->core.cpus, in evlist_cpu_iterator__next()
383 evlist_cpu_itr->evsel = evlist__first(evlist_cpu_itr->container); in evlist_cpu_iterator__next()
390 perf_cpu_map__idx(evlist_cpu_itr->evsel->core.cpus, in evlist_cpu_iterator__next()
406 static int evsel__strcmp(struct evsel *pos, char *evsel_name) in evsel__strcmp()
417 struct evsel *pos; in evlist__is_enabled()
431 struct evsel *pos; in __evlist__disable()
442 pos = evlist_cpu_itr.evsel; in __evlist__disable()
488 struct evsel *pos; in __evlist__enable()
496 pos = evlist_cpu_itr.evsel; in __evlist__enable()
535 static int evlist__enable_event_cpu(struct evlist *evlist, struct evsel *evsel, int cpu) in evlist__enable_event_cpu() argument
538 int nr_threads = evlist__nr_threads(evlist, evsel); in evlist__enable_event_cpu()
540 if (!evsel->core.fd) in evlist__enable_event_cpu()
544 int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0); in evlist__enable_event_cpu()
551 static int evlist__enable_event_thread(struct evlist *evlist, struct evsel *evsel, int thread) in evlist__enable_event_thread() argument
556 if (!evsel->core.fd) in evlist__enable_event_thread()
560 int err = ioctl(FD(evsel, cpu, thread), PERF_EVENT_IOC_ENABLE, 0); in evlist__enable_event_thread()
567 int evlist__enable_event_idx(struct evlist *evlist, struct evsel *evsel, int idx) in evlist__enable_event_idx() argument
572 return evlist__enable_event_cpu(evlist, evsel, idx); in evlist__enable_event_idx()
574 return evlist__enable_event_thread(evlist, evsel, idx); in evlist__enable_event_idx()
616 struct evsel *evlist__id2evsel(struct evlist *evlist, u64 id) in evlist__id2evsel()
625 return container_of(sid->evsel, struct evsel, core); in evlist__id2evsel()
633 struct evsel *evlist__id2evsel_strict(struct evlist *evlist, u64 id) in evlist__id2evsel_strict()
642 return container_of(sid->evsel, struct evsel, core); in evlist__id2evsel_strict()
667 struct evsel *evlist__event2evsel(struct evlist *evlist, union perf_event *event) in evlist__event2evsel()
669 struct evsel *first = evlist__first(evlist); in evlist__event2evsel()
694 return container_of(sid->evsel, struct evsel, core); in evlist__event2evsel()
1040 int evlist__apply_filters(struct evlist *evlist, struct evsel **err_evsel) in evlist__apply_filters()
1042 struct evsel *evsel; in evlist__apply_filters() local
1045 evlist__for_each_entry(evlist, evsel) { in evlist__apply_filters()
1046 if (evsel->filter == NULL) in evlist__apply_filters()
1053 err = perf_evsel__apply_filter(&evsel->core, evsel->filter); in evlist__apply_filters()
1055 *err_evsel = evsel; in evlist__apply_filters()
1065 struct evsel *evsel; in evlist__set_tp_filter() local
1071 evlist__for_each_entry(evlist, evsel) { in evlist__set_tp_filter()
1072 if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT) in evlist__set_tp_filter()
1075 err = evsel__set_filter(evsel, filter); in evlist__set_tp_filter()
1085 struct evsel *evsel; in evlist__append_tp_filter() local
1091 evlist__for_each_entry(evlist, evsel) { in evlist__append_tp_filter()
1092 if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT) in evlist__append_tp_filter()
1095 err = evsel__append_tp_filter(evsel, filter); in evlist__append_tp_filter()
1159 struct evsel *pos; in evlist__valid_sample_type()
1178 struct evsel *evsel; in __evlist__combined_sample_type() local
1183 evlist__for_each_entry(evlist, evsel) in __evlist__combined_sample_type()
1184 evlist->combined_sample_type |= evsel->core.attr.sample_type; in __evlist__combined_sample_type()
1197 struct evsel *evsel; in evlist__combined_branch_type() local
1200 evlist__for_each_entry(evlist, evsel) in evlist__combined_branch_type()
1201 branch_type |= evsel->core.attr.branch_sample_type; in evlist__combined_branch_type()
1207 struct evsel *first = evlist__first(evlist), *pos = first; in evlist__valid_read_format()
1229 struct evsel *first = evlist__first(evlist); in evlist__id_hdr_size()
1262 struct evsel *first = evlist__first(evlist), *pos = first; in evlist__valid_sample_id_all()
1274 struct evsel *first = evlist__first(evlist); in evlist__sample_id_all()
1278 void evlist__set_selected(struct evlist *evlist, struct evsel *evsel) in evlist__set_selected() argument
1280 evlist->selected = evsel; in evlist__set_selected()
1285 struct evsel *evsel; in evlist__close() local
1294 evlist__for_each_entry_reverse(evlist, evsel) in evlist__close()
1295 evsel__close(evsel); in evlist__close()
1303 perf_evsel__close_cpu(&evlist_cpu_itr.evsel->core, in evlist__close()
1308 evlist__for_each_entry_reverse(evlist, evsel) { in evlist__close()
1309 perf_evsel__free_fd(&evsel->core); in evlist__close()
1310 perf_evsel__free_id(&evsel->core); in evlist__close()
1349 struct evsel *evsel; in evlist__open() local
1364 evlist__for_each_entry(evlist, evsel) { in evlist__open()
1365 err = evsel__open(evsel, evsel->core.cpus, evsel->core.threads); in evlist__open()
1518 struct evsel *evsel = evlist__event2evsel(evlist, event); in evlist__parse_sample() local
1520 if (!evsel) in evlist__parse_sample()
1522 return evsel__parse_sample(evsel, event, sample); in evlist__parse_sample()
1527 struct evsel *evsel = evlist__event2evsel(evlist, event); in evlist__parse_sample_timestamp() local
1529 if (!evsel) in evlist__parse_sample_timestamp()
1531 return evsel__parse_sample_timestamp(evsel, event, timestamp); in evlist__parse_sample_timestamp()
1562 struct evsel *first = evlist__first(evlist); in evlist__strerror_open()
1618 void evlist__to_front(struct evlist *evlist, struct evsel *move_evsel) in evlist__to_front()
1620 struct evsel *evsel, *n; in evlist__to_front() local
1626 evlist__for_each_entry_safe(evlist, n, evsel) { in evlist__to_front()
1627 if (evsel__leader(evsel) == evsel__leader(move_evsel)) in evlist__to_front()
1628 list_move_tail(&evsel->core.node, &move); in evlist__to_front()
1634 struct evsel *evlist__get_tracking_event(struct evlist *evlist) in evlist__get_tracking_event()
1636 struct evsel *evsel; in evlist__get_tracking_event() local
1638 evlist__for_each_entry(evlist, evsel) { in evlist__get_tracking_event()
1639 if (evsel->tracking) in evlist__get_tracking_event()
1640 return evsel; in evlist__get_tracking_event()
1646 void evlist__set_tracking_event(struct evlist *evlist, struct evsel *tracking_evsel) in evlist__set_tracking_event()
1648 struct evsel *evsel; in evlist__set_tracking_event() local
1653 evlist__for_each_entry(evlist, evsel) { in evlist__set_tracking_event()
1654 if (evsel != tracking_evsel) in evlist__set_tracking_event()
1655 evsel->tracking = false; in evlist__set_tracking_event()
1661 struct evsel *evlist__find_evsel_by_str(struct evlist *evlist, const char *str) in evlist__find_evsel_by_str()
1663 struct evsel *evsel; in evlist__find_evsel_by_str() local
1665 evlist__for_each_entry(evlist, evsel) { in evlist__find_evsel_by_str()
1666 if (!evsel->name) in evlist__find_evsel_by_str()
1668 if (strcmp(str, evsel->name) == 0) in evlist__find_evsel_by_str()
1669 return evsel; in evlist__find_evsel_by_str()
1734 struct evsel *evsel; in evlist__exclude_kernel() local
1736 evlist__for_each_entry(evlist, evsel) { in evlist__exclude_kernel()
1737 if (!evsel->core.attr.exclude_kernel) in evlist__exclude_kernel()
1752 struct evsel *leader = evlist__first(evlist); in evlist__force_leader()
1759 struct evsel *evlist__reset_weak_group(struct evlist *evsel_list, struct evsel *evsel, bool close) in evlist__reset_weak_group() argument
1761 struct evsel *c2, *leader; in evlist__reset_weak_group()
1764 leader = evsel__leader(evsel); in evlist__reset_weak_group()
1774 if (c2 == evsel) in evlist__reset_weak_group()
2015 struct evsel *evsel; in evlist__ctlfd_enable() local
2029 evsel = evlist__find_evsel_by_str(evlist, name); in evlist__ctlfd_enable()
2030 if (evsel) { in evlist__ctlfd_enable()
2035 pr_info("Event %s %s\n", evsel->name, in evlist__ctlfd_enable()
2056 struct evsel *evsel; in evlist__ctlfd_list() local
2081 evlist__for_each_entry(evlist, evsel) in evlist__ctlfd_list()
2082 evsel__fprintf(evsel, &details, stderr); in evlist__ctlfd_list()
2134 struct evsel *evlist__find_evsel(struct evlist *evlist, int idx) in evlist__find_evsel()
2136 struct evsel *evsel; in evlist__find_evsel() local
2138 evlist__for_each_entry(evlist, evsel) { in evlist__find_evsel()
2139 if (evsel->core.idx == idx) in evlist__find_evsel()
2140 return evsel; in evlist__find_evsel()
2147 struct evsel *evsel; in evlist__scnprintf_evsels() local
2150 evlist__for_each_entry(evlist, evsel) { in evlist__scnprintf_evsels()
2151 if (evsel__is_dummy_event(evsel)) in evlist__scnprintf_evsels()
2153 if (size > (strlen(evsel__name(evsel)) + (printed ? 2 : 1))) { in evlist__scnprintf_evsels()
2154 …printed += scnprintf(bf + printed, size - printed, "%s%s", printed ? "," : "", evsel__name(evsel)); in evlist__scnprintf_evsels()
2166 struct evsel *leader, *evsel, *pos; in evlist__check_mem_load_aux() local
2175 evlist__for_each_entry(evlist, evsel) { in evlist__check_mem_load_aux()
2176 leader = evsel__leader(evsel); in evlist__check_mem_load_aux()
2177 if (leader == evsel) in evlist__check_mem_load_aux()