Searched refs:sym_re (Results 1 – 5 of 5) sorted by relevance
/external/bcc/src/python/bcc/ |
D | __init__.py | 905 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/ |
D | funclatency.py | 214 b.attach_uprobe(name=library, sym_re=pattern, fn_name="trace_func_entry", 216 b.attach_uretprobe(name=library, sym_re=pattern,
|
D | stackcount.py | 87 sym_re=self.pattern,
|
/external/bcc/tests/python/ |
D | test_probe_count.py | 72 self.b.attach_uprobe(name="c", sym_re=".*", fn_name="count")
|
/external/swiftshader/third_party/subzero/bloat/ |
D | bloat.py | 61 sym_re = re.compile(r'^[0-9a-f]+ ([0-9a-f]+) (.) ([^\t]+)(?:\t(.*):\d+)?$') 70 match = sym_re.match(line)
|