/external/bcc/examples/tracing/ |
urandomread-explicit.py | 7 # the argument struct and makes an explicit call to attach_tracepoint(). 41 b.attach_tracepoint(tp="random:urandom_read", fn_name="printarg")
|
/external/bcc/examples/cpp/ |
RandomRead.cc | 108 bpf->attach_tracepoint("random:urandom_read", "on_urandom_read");
|
UseExternalMap.cc | 102 res = bpf.attach_tracepoint("sched:sched_switch", "on_sched_switch");
|
/external/bcc/src/cc/api/ |
BPF.h | 81 StatusTuple attach_tracepoint(const std::string& tracepoint,
|
BPF.cc | 267 StatusTuple BPF::attach_tracepoint(const std::string& tracepoint, function in class:ebpf::BPF
|
/external/bcc/tools/ |
funccount.py | 103 self.bpf.attach_tracepoint(
|
stackcount.py | 96 self.bpf.attach_tracepoint(tp_re=self.pattern,
|
/external/bcc/src/python/bcc/ |
__init__.py | 736 def attach_tracepoint(self, tp=b"", tp_re=b"", fn_name=b""): member in class:BPF 737 """attach_tracepoint(tp="", tp_re="", fn_name="") 753 BPF(text).attach_tracepoint(tp="sched:sched_switch", fn_name="on_switch") 754 BPF(text).attach_tracepoint(tp_re="sched:.*", fn_name="on_switch") 762 self.attach_tracepoint(tp=tp, fn_name=fn_name) [all...] |