Home
last modified time | relevance | path

Searched refs:bpf_attach_perf_event_raw (Results 1 – 6 of 6) sorted by relevance

/external/bcc/src/cc/includes/
Dlibbpf.h125 int bpf_attach_perf_event_raw(int progfd, void *perf_event_attr, pid_t pid,
/external/bcc/src/cc/
Dlibbpf.h125 int bpf_attach_perf_event_raw(int progfd, void *perf_event_attr, pid_t pid,
Dlibbpf.c1604 int bpf_attach_perf_event_raw(int progfd, void *perf_event_attr, pid_t pid, in bpf_attach_perf_event_raw() function
1651 return bpf_attach_perf_event_raw(progfd, &attr, pid, cpu, group_fd, 0); in bpf_attach_perf_event()
/external/bcc/src/python/bcc/
Dlibbcc.py166 lib.bpf_attach_perf_event_raw.restype = ct.c_int
167 lib.bpf_attach_perf_event_raw.argtype = [Perf.perf_event_attr(), ct.c_uint, ct.c_uint, ct.c_uint, c…
D__init__.py1241 res = lib.bpf_attach_perf_event_raw(progfd, ct.byref(attr), pid,
/external/bcc/src/cc/api/
DBPF.cc474 int fd = bpf_attach_perf_event_raw(probe_fd, attr, pid, i, group_fd, in attach_perf_event_raw()