Home
last modified time | relevance | path

Searched refs:attach_perf_event (Results 1 – 9 of 9) sorted by relevance

/external/bcc/examples/cpp/
DLLCStat.cc78 bpf.attach_perf_event(PERF_TYPE_HARDWARE, PERF_COUNT_HW_CACHE_REFERENCES, in main()
84 auto attach_miss_res = bpf.attach_perf_event( in main()
/external/bcc/tools/
Dllcstat.py82 b.attach_perf_event(
85 b.attach_perf_event(
Drunqlen.py187 b.attach_perf_event(ev_type=PerfType.SOFTWARE,
Dcpuunclaimed.py168 b.attach_perf_event(ev_type=PerfType.SOFTWARE,
Dprofile.py247 b.attach_perf_event(ev_type=PerfType.SOFTWARE,
/external/bcc/tests/cc/
Dtest_perf_event.cc117 res = bpf.attach_perf_event(PERF_TYPE_SOFTWARE, PERF_COUNT_SW_CPU_CLOCK,
/external/bcc/src/cc/api/
DBPF.h85 StatusTuple attach_perf_event(uint32_t ev_type, uint32_t ev_config,
DBPF.cc299 StatusTuple BPF::attach_perf_event(uint32_t ev_type, uint32_t ev_config, in attach_perf_event() function in ebpf::BPF
/external/bcc/src/python/bcc/
D__init__.py876 def attach_perf_event(self, ev_type=-1, ev_config=-1, fn_name=b"", member in BPF