HomeSort by relevance Sort by last modified time
    Searched refs:ev_config (Results 1 - 9 of 9) sorted by null

  /external/bcc/tools/
llcstat.py 83 ev_type=PerfType.HARDWARE, ev_config=PerfHWConfig.CACHE_MISSES,
86 ev_type=PerfType.HARDWARE, ev_config=PerfHWConfig.CACHE_REFERENCES,
runqlen.py 188 ev_config=PerfSWConfig.CPU_CLOCK, fn_name="do_perf_event",
cpuunclaimed.py 169 ev_config=PerfSWConfig.TASK_CLOCK, fn_name="do_perf_event",
profile.py 248 ev_config=PerfSWConfig.CPU_CLOCK, fn_name="do_perf_event",
  /external/bcc/src/cc/api/
BPF.cc 298 StatusTuple BPF::attach_perf_event(uint32_t ev_type, uint32_t ev_config,
302 auto ev_pair = std::make_pair(ev_type, ev_config);
305 ev_type, ev_config);
318 int fd = bpf_attach_perf_event(probe_fd, ev_type, ev_config, sample_period,
326 ev_type, ev_config);
455 StatusTuple BPF::detach_perf_event(uint32_t ev_type, uint32_t ev_config) {
456 auto it = perf_events_.find(std::make_pair(ev_type, ev_config));
459 ev_config);
BPF.h 85 StatusTuple attach_perf_event(uint32_t ev_type, uint32_t ev_config,
95 StatusTuple detach_perf_event(uint32_t ev_type, uint32_t ev_config);
  /external/bcc/src/python/bcc/
__init__.py 840 def _attach_perf_event(self, progfd, ev_type, ev_config,
842 res = lib.bpf_attach_perf_event(progfd, ev_type, ev_config,
848 def attach_perf_event(self, ev_type=-1, ev_config=-1, fn_name=b"",
854 res[cpu] = self._attach_perf_event(fn.fd, ev_type, ev_config,
858 res[i] = self._attach_perf_event(fn.fd, ev_type, ev_config,
860 self.open_perf_events[(ev_type, ev_config)] = res
862 def detach_perf_event(self, ev_type=-1, ev_config=-1):
864 fds = self.open_perf_events[(ev_type, ev_config)]
867 ev_type, ev_config))
874 del self.open_perf_events[(ev_type, ev_config)]
    [all...]
  /external/bcc/src/cc/
libbpf.h 101 int bpf_attach_perf_event(int progfd, uint32_t ev_type, uint32_t ev_config,
libbpf.c     [all...]

Completed in 1003 milliseconds