Home
last modified time | relevance | path

Searched refs:bpf_attach_kprobe (Results 1 – 7 of 7) sorted by relevance

/external/bcc/src/python/bcc/
Dlibbcc.py90 lib.bpf_attach_kprobe.restype = ct.c_int
91 lib.bpf_attach_kprobe.argtypes = [ct.c_int, ct.c_int, ct.c_char_p, ct.c_char_p]
D__init__.py603 fd = lib.bpf_attach_kprobe(fn.fd, 0, ev_name, event, event_off)
626 fd = lib.bpf_attach_kprobe(fn.fd, 1, ev_name, event, 0)
/external/bcc/src/cc/
Dlibbpf.h73 int bpf_attach_kprobe(int progfd, enum bpf_probe_attach_type attach_type,
Dlibbpf.c827 int bpf_attach_kprobe(int progfd, enum bpf_probe_attach_type attach_type, in bpf_attach_kprobe() function
/external/bcc/src/cc/includes/
Dlibbpf.h73 int bpf_attach_kprobe(int progfd, enum bpf_probe_attach_type attach_type,
/external/bcc/src/lua/bcc/
Dbpf.lua216 local res = libbcc.bpf_attach_kprobe(fn.fd, retprobe, ev_name, event)
/external/bcc/src/cc/api/
DBPF.cc175 int res_fd = bpf_attach_kprobe(probe_fd, attach_type, probe_event.c_str(), in attach_kprobe()