Home
last modified time | relevance | path

Searched refs:bpf_counter_list (Results 1 – 4 of 4) sorted by relevance

/linux/tools/perf/util/
H A Dbpf_counter.c111 &evsel->bpf_counter_list, list) { in bpf_program_profiler__destroy()
116 assert(list_empty(&evsel->bpf_counter_list)); in bpf_program_profiler__destroy()
215 list_add(&counter->list, &evsel->bpf_counter_list); in bpf_program_profiler_load_one()
264 list_for_each_entry(counter, &evsel->bpf_counter_list, list) { in bpf_program_profiler__enable()
279 list_for_each_entry(counter, &evsel->bpf_counter_list, list) { in bpf_program_profiler__disable()
299 if (list_empty(&evsel->bpf_counter_list)) in bpf_program_profiler__read()
308 list_for_each_entry(counter, &evsel->bpf_counter_list, list) { in bpf_program_profiler__read()
342 list_for_each_entry(counter, &evsel->bpf_counter_list, list) { in bpf_program_profiler__install_pe()
H A Devsel.h164 struct list_head bpf_counter_list; /* for perf-stat -b */ member
305 return evsel->bpf_counter_ops != NULL && list_empty(&evsel->bpf_counter_list); in evsel__is_bperf()
H A Devsel.c400 INIT_LIST_HEAD(&evsel->bpf_counter_list); in evsel__init()
/linux/tools/perf/
H A Dbuiltin-stat.c725 attr->inherit = !config->no_inherit && list_empty(&evsel->bpf_counter_list); in create_perf_stat_counter()