Home
last modified time | relevance | path

Searched refs:reading_map_fd (Results 1 – 3 of 3) sorted by relevance

/linux-6.15/tools/perf/util/
H A Dbpf_counter_cgroup.c238 int reading_map_fd, err = 0; in bperf_cgrp__read() local
249 reading_map_fd = bpf_map__fd(skel->maps.cgrp_readings); in bperf_cgrp__read()
256 err = bpf_map_lookup_elem(reading_map_fd, &idx, values); in bperf_cgrp__read()
H A Dbpf_counter.c237 int reading_map_fd; in bpf_program_profiler__read() local
254 reading_map_fd = bpf_map__fd(skel->maps.accum_readings); in bpf_program_profiler__read()
256 err = bpf_map_lookup_elem(reading_map_fd, &key, values); in bpf_program_profiler__read()
640 int reading_map_fd, err = 0; in bperf__read() local
645 reading_map_fd = bpf_map__fd(skel->maps.accum_readings); in bperf__read()
651 err = bpf_map_lookup_elem(reading_map_fd, &i, values); in bperf__read()
/linux-6.15/tools/bpf/bpftool/
H A Dprog.c2106 int reading_map_fd, count_map_fd; in profile_read_values() local
2111 reading_map_fd = bpf_map__fd(obj->maps.accum_readings); in profile_read_values()
2113 if (reading_map_fd < 0 || count_map_fd < 0) { in profile_read_values()
2134 err = bpf_map_lookup_elem(reading_map_fd, &key, values); in profile_read_values()