HomeSort by relevance Sort by last modified time
    Searched refs:user_stack (Results 1 - 10 of 10) sorted by null

  /external/bcc/examples/cpp/
TCPSendStack.cc 26 int user_stack;
38 key.user_stack = stack_traces.get_stackid(ctx, BPF_F_USER_STACK);
52 int user_stack; member in struct:stack_key_t
109 if (it.first.user_stack >= 0) {
111 auto syms = stacks.get_stack_symbol(it.first.user_stack, it.first.pid);
116 if (it.first.user_stack != -EFAULT) {
118 std::cout << " [Lost User Stack " << it.first.user_stack << "]"
  /external/bcc/tools/
funcslower.py 212 if args.user_stack:
255 ([("user_stack_id", ct.c_int)] if args.user_stack else []) + \
289 user_stack = []
292 if args.user_stack and event.user_stack_id > 0:
293 user_stack = stack_traces.walk(event.user_stack_id)
303 do_delimiter = user_stack and kernel_stack
307 user_stack = list(user_stack)
310 [b.sym(addr, event.tgid_pid) for addr in reversed(user_stack)] + \
318 for addr in user_stack
    [all...]
stackcount.py 30 def __init__(self, pattern, kernel_stack, user_stack, use_regex=False,
46 self.user_stack = user_stack
109 if self.user_stack:
164 if self.per_pid or not self.is_kernel_probe() or self.user_stack:
267 self.user_stack = True
270 self.user_stack = self.args.user_stacks_only
273 self.kernel_stack, self.user_stack,
333 user_stack = [] if k.user_stack_id < 0 else \
340 user_stack = list(user_stack
    [all...]
offcputime.py 275 user_stack = [] if k.user_stack_id < 0 else \
282 user_stack = list(user_stack) variable
291 line.extend([b.sym(addr, k.tgid) for addr in reversed(user_stack)])
313 for addr in user_stack:
276 stack_traces.walk(k.user_stack_id) variable
profile.py 291 user_stack = [] if k.user_stack_id < 0 else \
307 user_stack = list(user_stack)
316 line.extend([b.sym(addr, k.pid) for addr in reversed(user_stack)])
338 for addr in user_stack:
trace.py 53 def __init__(self, probe, string_size, kernel_stack, user_stack):
59 self.user_stack = user_stack
319 if self.user_stack:
350 if (self.kernel_stack or self.user_stack) else ""
360 if self.user_stack else ""
469 if self.user_stack:
567 if self.user_stack:
569 if self.user_stack or self.kernel_stack:
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_get_stack_rawtp.c 14 __u64 user_stack[MAX_STACK_RAWTP]; member in struct:stack_trace_t
74 data->user_stack_size = bpf_get_stack(ctx, data->user_stack, max_len,
test_progs.c 1416 __u64 user_stack[MAX_STACK_RAWTP]; member in struct:get_stack_trace_t
    [all...]
  /external/bcc/tools/old/
profile.py 312 user_stack = [] if k.user_stack_id < 0 else \
340 user_stack = list(user_stack)
343 [b.sym(addr, k.pid) for addr in reversed(user_stack)] + \
353 for addr in user_stack:
  /external/perf_data_converter/src/quipper/kernel/
perf_internals.h 259 struct stack_dump user_stack; member in struct:quipper::perf_sample

Completed in 275 milliseconds