Symbol: bpf_counter_ops
tools/perf/util/bpf_counter.c
354
struct bpf_counter_ops bpf_program_profiler_ops = {
tools/perf/util/bpf_counter.c
834
struct bpf_counter_ops bperf_ops = {
tools/perf/util/bpf_counter.c
843
extern struct bpf_counter_ops bperf_cgrp_ops;
tools/perf/util/bpf_counter.c
847
return evsel->bpf_counter_ops == NULL;
tools/perf/util/bpf_counter.c
854
return evsel->bpf_counter_ops->install_pe(evsel, cpu_map_idx, fd);
tools/perf/util/bpf_counter.c
860
evsel->bpf_counter_ops = &bpf_program_profiler_ops;
tools/perf/util/bpf_counter.c
862
evsel->bpf_counter_ops = &bperf_cgrp_ops;
tools/perf/util/bpf_counter.c
865
evsel->bpf_counter_ops = &bperf_ops;
tools/perf/util/bpf_counter.c
867
if (evsel->bpf_counter_ops)
tools/perf/util/bpf_counter.c
868
return evsel->bpf_counter_ops->load(evsel, target);
tools/perf/util/bpf_counter.c
876
return evsel->bpf_counter_ops->enable(evsel);
tools/perf/util/bpf_counter.c
883
return evsel->bpf_counter_ops->disable(evsel);
tools/perf/util/bpf_counter.c
890
return evsel->bpf_counter_ops->read(evsel);
tools/perf/util/bpf_counter.c
897
evsel->bpf_counter_ops->destroy(evsel);
tools/perf/util/bpf_counter.c
898
evsel->bpf_counter_ops = NULL;
tools/perf/util/bpf_counter_cgroup.c
323
struct bpf_counter_ops bperf_cgrp_ops = {
tools/perf/util/evsel.h
162
struct bpf_counter_ops *bpf_counter_ops;
tools/perf/util/evsel.h
22
struct bpf_counter_ops;
tools/perf/util/evsel.h
300
return evsel->bpf_counter_ops != NULL;
tools/perf/util/evsel.h
305
return evsel->bpf_counter_ops != NULL && list_empty(&evsel->bpf_counter_list);