/external/bcc/tests/cc/ |
D | test_bpf_table.cc | 205 auto stack_traces = bpf.get_stack_table("stack_traces"); variable 210 auto addrs = stack_traces.get_stack_addr(stack_id); 211 auto symbols = stack_traces.get_stack_symbol(stack_id, -1); 222 stack_traces.clear_table_non_atomic(); 223 addrs = stack_traces.get_stack_addr(stack_id); 258 auto stack_traces = bpf.get_stackbuildid_table("stack_traces"); variable 267 auto addrs = stack_traces.get_stack_addr(stack_id); 268 auto symbols = stack_traces.get_stack_symbol(stack_id); 280 stack_traces.clear_table_non_atomic(); 281 addrs = stack_traces.get_stack_addr(stack_id);
|
/external/bcc/tests/python/ |
D | test_stackid.py | 32 stack_traces = b[b"stack_traces"] 40 stack = stack_traces[stackid].ip 70 stack_traces = b[b"stack_traces"] 79 stack = stack_traces[stackid]
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | function_def_utils.cc | 55 const StackTracesMap& stack_traces = in FunctionDefToBodyHelper() local 59 auto it = stack_traces.find(n->name()); in FunctionDefToBodyHelper() 60 if (it != stack_traces.end()) { in FunctionDefToBodyHelper()
|
/external/bcc/examples/lua/ |
D | tracepoint-offcputime.lua | 27 local stack_traces = assert(bpf.map('stack_trace', 16)) 50 key.stack_id = stack_id(stack_traces, BPF.F_FAST_STACK_CMP) 69 local traces = stack_traces[k.stack_id]
|
D | offcputime.lua | 109 local stack_traces = b:get_table("stack_traces") 112 for addr in stack_traces:walk(tonumber(k.stack_id)) do
|
D | memleak.lua | 145 local stack_traces = bpf:get_table("stack_traces") 172 local stack = stack_traces:get(stack_id, resolve)
|
/external/bcc/tools/ |
D | tcpdrop.py | 204 for addr in stack_traces.walk(event.stack_id): 216 for addr in stack_traces.walk(event.stack_id): 238 stack_traces = b.get_table("stack_traces") variable
|
D | offwaketime.py | 327 stack_traces = b.get_table("stack_traces") variable 344 reversed(list(stack_traces.walk(k.w_u_stack_id))[1:]) 346 reversed(list(stack_traces.walk(k.w_k_stack_id))[1:]) 348 stack_traces.walk(k.t_u_stack_id) 350 stack_traces.walk(k.t_k_stack_id)
|
D | deadlock.c | 63 BPF_STACK_TRACE(stack_traces, MAX_TRACES); 98 stack_traces.get_stackid(ctx, BPF_F_USER_STACK); in trace_mutex_acquire() 193 stack_traces.get_stackid(ctx, BPF_F_USER_STACK); in trace_clone()
|
D | stacksnoop.lua | 76 local stack_traces = bpf:get_table("stack_traces") 89 for addr in stack_traces:walk(tonumber(event.stack_id)) do
|
D | memleak.py | 506 stack_traces = bpf["stack_traces"] 515 stack = list(stack_traces.walk(info.stack_id)) 533 stack_traces = bpf["stack_traces"] 541 for addr in stack_traces.walk(stack_id.value):
|
D | funcslower.py | 301 stack_traces = b.get_table("stacks") 304 user_stack = stack_traces.walk(event.user_stack_id) 308 kernel_tmp = stack_traces.walk(event.kernel_stack_id)
|
D | klockstat.py | 424 stack = list(stack_traces.walk(k.value)) 463 stack_traces = b.get_table("stack_traces") variable 510 stack_traces.clear()
|
D | criticalstat.py | 289 stack_traces = b['stack_traces'] 299 kstack = stack_traces.walk(event.stack_id)
|
D | compactsnoop.py | 292 stack_traces = b.get_table("stack_traces") variable 384 for addr in stack_traces.walk(event.stack_id):
|
D | offcputime.py | 317 stack_traces = b.get_table("stack_traces") variable 330 stack_traces.walk(k.user_stack_id) 332 stack_traces.walk(k.kernel_stack_id)
|
D | profile.py | 342 stack_traces = b.get_table("stack_traces") variable 354 stack_traces.walk(k.user_stack_id) 356 stack_traces.walk(k.kernel_stack_id)
|
D | wakeuptime.py | 238 stack_traces = b.get_table("stack_traces") variable 247 list(stack_traces.walk(k.w_k_stack_id))[1:]
|
/external/bcc/examples/tracing/ |
D | mallocstacks.py | 66 stack_traces = b.get_table("stack_traces") variable 71 for addr in stack_traces.walk(k.value):
|
D | stack_buildid_example.py | 83 stack_traces = b.get_table("stack_traces") variable 98 stack_traces.walk(k.user_stack_id)
|
D | stacksnoop.py | 86 stack_traces = b.get_table("stack_traces") variable 107 for addr in stack_traces.walk(event.stack_id):
|
/external/bcc/tools/old/ |
D | profile.py | 301 stack_traces = b.get_table("stack_traces") variable 315 stack_traces.walk(k.user_stack_id) 317 stack_traces.walk(k.kernel_stack_id)
|
D | compactsnoop.py | 298 stack_traces = b.get_table("stack_traces") variable 378 for addr in stack_traces.walk(event.stack_id):
|
/external/pytorch/torch/_inductor/ |
D | cudagraph_trees.py | 415 stack_traces: Optional[StackTraces] = None, 432 stack_traces, 596 stack_traces: Optional[StackTraces], 609 self.stack_traces = stack_traces 780 stack_traces: Optional[StackTraces], 788 self.stack_traces = stack_traces 825 node.stack_traces for node in self._path_from_root 1278 if self.stack_traces is None: 1279 self.stack_traces = [None for _ in range(len(outputs))] 1281 assert len(self.stack_traces) == len( [all …]
|
/external/executorch/docs/source/tutorials_source/ |
D | devtools-integration-tutorial.py | 261 pp.pprint(slowest.stack_traces) 272 pp.pprint(slowest.stack_traces)
|