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

  /external/bcc/src/python/bcc/
__init__.py 716 def get_tracepoints(tp_re):
727 if re.match(tp_re, tp):
736 def attach_tracepoint(self, tp=b"", tp_re=b"", fn_name=b""):
737 """attach_tracepoint(tp="", tp_re="", fn_name="")
746 tp_re. The program will then attach to tracepoints that match the
754 BPF(text).attach_tracepoint(tp_re="sched:.*", fn_name="on_switch")
758 tp_re = _assert_is_bytes(tp_re)
760 if tp_re:
761 for tp in BPF.get_tracepoints(tp_re)
    [all...]
  /external/bcc/tools/
stackcount.py 96 self.bpf.attach_tracepoint(tp_re=self.pattern,

Completed in 581 milliseconds