Home
last modified time | relevance | path

Searched refs:sym_re (Results 1 – 5 of 5) sorted by relevance

/external/bcc/src/python/bcc/
D__init__.py905 def get_user_functions(name, sym_re): argument
907 BPF.get_user_functions_and_addresses(name, sym_re)])
910 def get_user_addresses(name, sym_re): argument
920 BPF.get_user_functions_and_addresses(name, sym_re)])
923 def get_user_functions_and_addresses(name, sym_re): argument
925 sym_re = _assert_is_bytes(sym_re)
929 if re.match(sym_re, dname):
946 def attach_uprobe(self, name=b"", sym=b"", sym_re=b"", addr=None, argument
971 sym_re = _assert_is_bytes(sym_re)
974 if sym_re:
[all …]
/external/bcc/tools/
Dfunclatency.py214 b.attach_uprobe(name=library, sym_re=pattern, fn_name="trace_func_entry",
216 b.attach_uretprobe(name=library, sym_re=pattern,
Dstackcount.py87 sym_re=self.pattern,
/external/bcc/tests/python/
Dtest_probe_count.py72 self.b.attach_uprobe(name="c", sym_re=".*", fn_name="count")
/external/swiftshader/third_party/subzero/bloat/
Dbloat.py61 sym_re = re.compile(r'^[0-9a-f]+ ([0-9a-f]+) (.) ([^\t]+)(?:\t(.*):\d+)?$')
70 match = sym_re.match(line)