Home
last modified time | relevance | path

Searched refs:usdt_ctx (Results 1 – 4 of 4) sorted by relevance

/external/bcc/examples/usdt_sample/scripts/
Dlat_dist.py82 usdt_ctx = USDT(pid=this_pid) variable
83 usdt_ctx.enable_probe(probe="operation_start", fn_name="trace_operation_start")
84 usdt_ctx.enable_probe(probe="operation_end", fn_name="trace_operation_end")
87 bpf_ctx = BPF(text=bpf_text, usdt_contexts=[usdt_ctx], debug=debugLevel)
Dlat_avg.py107 usdt_ctx = USDT(pid=this_pid) variable
108 usdt_ctx.enable_probe(probe="operation_start", fn_name="trace_operation_start")
109 usdt_ctx.enable_probe(probe="operation_end", fn_name="trace_operation_end")
112 bpf_ctx = BPF(text=bpf_text, usdt_contexts=[usdt_ctx], debug=debugLevel)
Dlatency.py84 usdt_ctx = USDT(pid=this_pid) variable
85 usdt_ctx.enable_probe(probe="operation_start", fn_name="trace_operation_start")
86 usdt_ctx.enable_probe(probe="operation_end", fn_name="trace_operation_end")
89 bpf_ctx = BPF(text=bpf_text, usdt_contexts=[usdt_ctx], debug=debugLevel)
/external/bcc/tools/
Dargdist.py180 self.usdt_ctx = None
249 self.usdt_ctx = USDT(path=self.library, pid=self.pid)
250 self.usdt_ctx.enable_probe(
297 arg_ctype = self.usdt_ctx.get_probe_arg_ctype(
641 self.usdt_ctx = None
671 for text in [probe.usdt_ctx.get_text()
673 if probe.usdt_ctx]:
676 usdt_contexts = [probe.usdt_ctx
677 for probe in self.probes if probe.usdt_ctx]