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.py83 usdt_ctx = USDT(pid=this_pid) variable
84 usdt_ctx.enable_probe(probe="operation_start", fn_name="trace_operation_start")
85 usdt_ctx.enable_probe(probe="operation_end", fn_name="trace_operation_end")
88 bpf_ctx = BPF(text=bpf_text, usdt_contexts=[usdt_ctx], debug=debugLevel)
Dlat_avg.py108 usdt_ctx = USDT(pid=this_pid) variable
109 usdt_ctx.enable_probe(probe="operation_start", fn_name="trace_operation_start")
110 usdt_ctx.enable_probe(probe="operation_end", fn_name="trace_operation_end")
113 bpf_ctx = BPF(text=bpf_text, usdt_contexts=[usdt_ctx], debug=debugLevel)
Dlatency.py85 usdt_ctx = USDT(pid=this_pid) variable
86 usdt_ctx.enable_probe(probe="operation_start", fn_name="trace_operation_start")
87 usdt_ctx.enable_probe(probe="operation_end", fn_name="trace_operation_end")
90 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]