Home
last modified time | relevance | path

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

/external/bcc/tests/cc/
Dtest_bpf_table.cc203 auto stack_traces = bpf.get_stack_table("stack_traces"); variable
208 auto addrs = stack_traces.get_stack_addr(stack_id);
209 auto symbols = stack_traces.get_stack_symbol(stack_id, -1);
220 stack_traces.clear_table_non_atomic();
221 addrs = stack_traces.get_stack_addr(stack_id);
/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.lua107 local stack_traces = b:get_table("stack_traces")
110 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/
Doffwaketime.py294 stack_traces = b.get_table("stack_traces") variable
311 reversed(list(stack_traces.walk(k.w_u_stack_id))[1:])
313 reversed(list(stack_traces.walk(k.w_k_stack_id))[1:])
315 stack_traces.walk(k.t_u_stack_id)
317 stack_traces.walk(k.t_k_stack_id)
Dtcpdrop.py189 for addr in stack_traces.walk(event.stack_id):
201 for addr in stack_traces.walk(event.stack_id):
214 stack_traces = b.get_table("stack_traces") variable
Ddeadlock_detector.c63 BPF_STACK_TRACE(stack_traces, 655360);
98 stack_traces.get_stackid(ctx, BPF_F_USER_STACK | BPF_F_REUSE_STACKID); in trace_mutex_acquire()
193 stack_traces.get_stackid(ctx, BPF_F_USER_STACK | BPF_F_REUSE_STACKID); in trace_clone()
Dmemleak.py452 stack_traces = bpf["stack_traces"]
461 stack = list(stack_traces.walk(info.stack_id))
478 stack_traces = bpf["stack_traces"]
486 for addr in stack_traces.walk(stack_id.value):
Dstacksnoop.lua76 local stack_traces = bpf:get_table("stack_traces")
89 for addr in stack_traces:walk(tonumber(event.stack_id)) do
Dfuncslower.py290 stack_traces = b.get_table("stacks")
293 user_stack = stack_traces.walk(event.user_stack_id)
297 kernel_tmp = stack_traces.walk(event.kernel_stack_id)
Doffcputime.py263 stack_traces = b.get_table("stack_traces") variable
276 stack_traces.walk(k.user_stack_id)
278 stack_traces.walk(k.kernel_stack_id)
Dprofile.py279 stack_traces = b.get_table("stack_traces") variable
292 stack_traces.walk(k.user_stack_id)
294 stack_traces.walk(k.kernel_stack_id)
Dcriticalstat.py300 stack_traces = b['stack_traces']
310 kstack = stack_traces.walk(event.stack_id)
Dwakeuptime.py194 stack_traces = b.get_table("stack_traces") variable
203 reversed(list(stack_traces.walk(k.w_k_stack_id))[1:])
Dstackcount.py329 stack_traces = self.probe.bpf["stack_traces"]
334 stack_traces.walk(k.user_stack_id)
336 stack_traces.walk(k.kernel_stack_id)
/external/bcc/examples/tracing/
Dmallocstacks.py54 stack_traces = b.get_table("stack_traces") variable
58 for addr in stack_traces.walk(k.value):
Dstacksnoop.py94 stack_traces = b.get_table("stack_traces") variable
115 for addr in stack_traces.walk(event.stack_id):
/external/bcc/tests/python/
Dtest_stackid.py41 stack_traces = b["stack_traces"]
49 stack = stack_traces[stackid].ip
/external/bcc/tools/old/
Dprofile.py299 stack_traces = b.get_table("stack_traces") variable
313 stack_traces.walk(k.user_stack_id)
315 stack_traces.walk(k.kernel_stack_id)
/external/adeb/bcc/misc/
Dlockstat.py239 stack_traces = bpf_program['stack_traces']
243 ust = stack_traces.walk(val.sid)
/external/bcc/docs/
Dreference_guide.md584 BPF_STACK_TRACE(stack_traces, 1024);
587 This creates stack trace map named ```stack_traces```, with a maximum number of stack trace entries…