Home
last modified time | relevance | path

Searched refs:enable_probe_or_bail (Results 1 – 6 of 6) sorted by relevance

/external/bcc/tools/lib/
Duobjnew.py106 usdt.enable_probe_or_bail("object__alloc", "alloc_entry")
135 usdt.enable_probe_or_bail("object__create", "object_alloc_entry")
138 usdt.enable_probe_or_bail("%s__create" % thing,
153 usdt.enable_probe_or_bail("obj__create", "alloc_entry")
Duthreads.py65 usdt.enable_probe_or_bail("pthread_start", "trace_pthread")
93 usdt.enable_probe_or_bail("thread__start", "trace_start")
94 usdt.enable_probe_or_bail("thread__stop", "trace_stop")
Dugc.py111 usdt.enable_probe_or_bail(self.begin, "trace_%s" % self.begin)
112 usdt.enable_probe_or_bail(self.end, "trace_%s" % self.end)
Ducalls.py248 usdt.enable_probe_or_bail(entry_probe, "trace_entry")
250 usdt.enable_probe_or_bail(return_probe, "trace_return")
Duflow.py115 usdt.enable_probe_or_bail(probe_name, func_name)
/external/bcc/src/python/bcc/
Dusdt.py157 def enable_probe_or_bail(self, probe, fn_name): member in USDT