Home
last modified time | relevance | path

Searched refs:stack_traces (Results 1 – 25 of 38) sorted by relevance

12

/external/bcc/tests/cc/
Dtest_bpf_table.cc205 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/
Dtest_stackid.py32 stack_traces = b["stack_traces"]
40 stack = stack_traces[stackid].ip
70 stack_traces = b["stack_traces"]
79 stack = stack_traces[stackid]
/external/tensorflow/tensorflow/core/common_runtime/
Dfunction_def_utils.cc55 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/
Dtracepoint-offcputime.lua27 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]
Doffcputime.lua109 local stack_traces = b:get_table("stack_traces")
112 for addr in stack_traces:walk(tonumber(k.stack_id)) do
Dmemleak.lua145 local stack_traces = bpf:get_table("stack_traces")
172 local stack = stack_traces:get(stack_id, resolve)
/external/bcc/tools/
Dtcpdrop.py180 for addr in stack_traces.walk(event.stack_id):
192 for addr in stack_traces.walk(event.stack_id):
205 stack_traces = b.get_table("stack_traces") variable
Doffwaketime.py326 stack_traces = b.get_table("stack_traces") variable
343 reversed(list(stack_traces.walk(k.w_u_stack_id))[1:])
345 reversed(list(stack_traces.walk(k.w_k_stack_id))[1:])
347 stack_traces.walk(k.t_u_stack_id)
349 stack_traces.walk(k.t_k_stack_id)
Ddeadlock.c63 BPF_STACK_TRACE(stack_traces, 655360);
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()
Dstacksnoop.lua76 local stack_traces = bpf:get_table("stack_traces")
89 for addr in stack_traces:walk(tonumber(event.stack_id)) do
Dmemleak.py501 stack_traces = bpf["stack_traces"]
510 stack = list(stack_traces.walk(info.stack_id))
528 stack_traces = bpf["stack_traces"]
536 for addr in stack_traces.walk(stack_id.value):
Dklockstat.py424 stack = list(stack_traces.walk(k.value))
463 stack_traces = b.get_table("stack_traces") variable
510 stack_traces.clear()
Dfuncslower.py301 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)
Dcriticalstat.py289 stack_traces = b['stack_traces']
299 kstack = stack_traces.walk(event.stack_id)
Dcompactsnoop.py297 stack_traces = b.get_table("stack_traces") variable
389 for addr in stack_traces.walk(event.stack_id):
Doffcputime.py301 stack_traces = b.get_table("stack_traces") variable
314 stack_traces.walk(k.user_stack_id)
316 stack_traces.walk(k.kernel_stack_id)
Dprofile.py309 stack_traces = b.get_table("stack_traces") variable
321 stack_traces.walk(k.user_stack_id)
323 stack_traces.walk(k.kernel_stack_id)
Dwakeuptime.py236 stack_traces = b.get_table("stack_traces") variable
245 reversed(list(stack_traces.walk(k.w_k_stack_id))[1:])
Dstackcount.py341 stack_traces = self.probe.bpf["stack_traces"]
346 stack_traces.walk(k.user_stack_id)
348 stack_traces.walk(k.kernel_stack_id)
/external/bcc/examples/tracing/
Dmallocstacks.py66 stack_traces = b.get_table("stack_traces") variable
71 for addr in stack_traces.walk(k.value):
Dstack_buildid_example.py83 stack_traces = b.get_table("stack_traces") variable
98 stack_traces.walk(k.user_stack_id)
Dstacksnoop.py94 stack_traces = b.get_table("stack_traces") variable
115 for addr in stack_traces.walk(event.stack_id):
/external/bcc/tools/old/
Dprofile.py301 stack_traces = b.get_table("stack_traces") variable
315 stack_traces.walk(k.user_stack_id)
317 stack_traces.walk(k.kernel_stack_id)
Dcompactsnoop.py298 stack_traces = b.get_table("stack_traces") variable
378 for addr in stack_traces.walk(event.stack_id):
/external/tensorflow/tensorflow/core/framework/
Dfunction.h429 const StackTracesMap& stack_traces = {})
444 const StackTracesMap& stack_traces = {})
549 return entry->stack_traces; in GetStackTraces()
560 const FunctionDef& fdef_in, const StackTracesMap& stack_traces = {});
564 const StackTracesMap stack_traces; member
578 const StackTracesMap& stack_traces, bool* added)

12