/tools/testing/selftests/x86/ |
D | unwind_vdso.c | 84 int depth; /* -1 until we hit the trap source */ member 92 if (state->depth == -1) { in trace_fn() 94 state->depth = 0; in trace_fn() 121 state->depth++; in trace_fn() 154 state.depth = -1; in sigtrap()
|
/tools/perf/ui/stdio/ |
D | hist.c | 32 static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask, in ipchain__fprintf_graph_line() argument 38 for (i = 0; i < depth; i++) in ipchain__fprintf_graph_line() 51 int depth, int depth_mask, int period, in ipchain__fprintf_graph() argument 61 for (i = 0; i < depth; i++) { in ipchain__fprintf_graph() 66 if (!period && i == depth - 1) { in ipchain__fprintf_graph() 109 u64 total_samples, int depth, in __callchain__fprintf_graph() argument 143 new_depth_mask &= ~(1 << (depth - 1)); in __callchain__fprintf_graph() 149 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask, in __callchain__fprintf_graph() 153 ret += ipchain__fprintf_graph(fp, child, chain, depth, in __callchain__fprintf_graph() 165 depth + 1, in __callchain__fprintf_graph() [all …]
|
/tools/bpf/bpftool/ |
D | json_writer.c | 23 unsigned depth; /* nesting */ member 32 for (i = 0; i < self->depth; ++i) in jsonw_indent() 95 self->depth = 0; in jsonw_new() 107 assert(self->depth == 0); in jsonw_destroy() 124 ++self->depth; in jsonw_begin() 130 assert(self->depth > 0); in jsonw_end() 132 --self->depth; in jsonw_end()
|
/tools/testing/fault-injection/ |
D | failcmd.sh | 43 --stacktrace-depth=value, --require-start=value, --require-end=value, 88 LONGOPTS=$LONGOPTS,stacktrace-depth:,require-start:,require-end: 158 --stacktrace-depth) 159 echo $2 > $FAULTATTR/stacktrace-depth
|
/tools/testing/selftests/exec/ |
D | .gitignore | 9 /recursion-depth
|
D | Makefile | 11 TEST_GEN_PROGS += recursion-depth
|
/tools/perf/util/ |
D | util.c | 130 static int rm_rf_depth_pat(const char *path, int depth, const char **pat) in rm_rf_depth_pat() argument 173 ret = depth ? rm_rf_depth_pat(namebuf, depth - 1, pat) : 0; in rm_rf_depth_pat()
|
D | sort.h | 105 u8 depth; member
|
D | probe-event.c | 1983 struct strbuf *buf, int depth) in __synthesize_probe_trace_arg_ref() argument 1987 depth = __synthesize_probe_trace_arg_ref(ref->next, buf, in __synthesize_probe_trace_arg_ref() 1988 depth + 1); in __synthesize_probe_trace_arg_ref() 1989 if (depth < 0) in __synthesize_probe_trace_arg_ref() 1990 return depth; in __synthesize_probe_trace_arg_ref() 1993 return (err < 0) ? err : depth; in __synthesize_probe_trace_arg_ref() 2000 int depth = 0, err; in synthesize_probe_trace_arg() local 2016 depth = __synthesize_probe_trace_arg_ref(ref, buf, 1); in synthesize_probe_trace_arg() 2017 if (depth < 0) in synthesize_probe_trace_arg() 2018 return depth; in synthesize_probe_trace_arg() [all …]
|
D | hist.c | 313 if (!he->depth) { in hists__decay_entry() 1473 int depth = 0; in hists__hierarchy_insert_entry() local 1489 new_he->depth = depth++; in hists__hierarchy_insert_entry()
|
D | machine.c | 1293 const char *dir_name, int depth) in map_groups__set_modules_path_dir() argument 1319 if (depth == 0) { in map_groups__set_modules_path_dir() 1326 depth + 1); in map_groups__set_modules_path_dir()
|
/tools/power/pm-graph/config/ |
D | suspend-callgraph.cfg | 80 # Max graph depth 81 # limit the callgraph trace to this depth (default: 0 = all)
|
D | example.cfg | 125 # Max graph depth 126 # limit the callgraph trace to this depth (default: 0 = all)
|
/tools/perf/Documentation/ |
D | perf-ftrace.txt | 82 --graph-depth=:: 83 Set max depth for function graph tracer to follow
|
D | perf-trace.txt | 189 Set the stack depth limit when parsing the callchain, anything 190 beyond the specified depth will be ignored. Note that at this point 202 Set the stack depth limit when parsing the callchain, anything 203 below the specified depth will be ignored. Disabled by default.
|
D | perf-script.txt | 197 name of the symbol indented with spaces to reflect the stack depth. 346 Set the stack depth limit when parsing the callchain, anything 347 beyond the specified depth will be ignored. This is a trade-off
|
D | perf-top.txt | 184 Set the stack depth limit when parsing the callchain, anything 185 beyond the specified depth will be ignored. This is a trade-off
|
D | perf-report.txt | 269 Set the stack depth limit when parsing the callchain, anything 270 beyond the specified depth will be ignored. This is a trade-off
|
/tools/power/pm-graph/ |
D | sleepgraph.py | 1176 self.depth = nodedepth 1737 def masterTopology(self, name, list, depth): argument 1738 node = DeviceNode(name, depth) 1744 cnode = self.masterTopology(cname, clist, depth+1) 1981 self.depth = 0 2024 self.depth = self.getDepth(match.group('d')) 2062 self.depth, self.name, self.length*1000000, info)) 2065 self.depth, self.name, self.length*1000000, info)) 2068 self.depth, self.name, self.length*1000000, info)) 2113 self.depth = 0 [all …]
|
D | bootgraph.py | 501 if l.fcall and l.depth == 1:
|
/tools/lib/traceevent/Documentation/ |
D | libtraceevent-event_print.txt | 61 (lock depth, or migration disabled, which are unique to
|
/tools/perf/ |
D | builtin-script.c | 1212 size_t depth = thread_stack__depth(thread, sample->cpu); in perf_sample__fprintf_callindent() local 1224 depth += 1; in perf_sample__fprintf_callindent() 1235 len = fprintf(fp, "%*s%s", (int)depth * 4, "", name); in perf_sample__fprintf_callindent() 1237 len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip); in perf_sample__fprintf_callindent() 1769 int depth = thread_stack__depth(thread, sample->cpu); in show_event() local 1775 if (depth <= thread->filter_entry_depth) { in show_event() 1794 thread->filter_entry_depth = depth; in show_event()
|
/tools/lib/bpf/ |
D | btf.c | 280 int depth = 0; in btf__resolve_type() local 283 while (depth < MAX_RESOLVE_DEPTH && in btf__resolve_type() 288 depth++; in btf__resolve_type() 291 if (depth == MAX_RESOLVE_DEPTH || btf_type_is_void_or_null(t)) in btf__resolve_type()
|
/tools/perf/ui/browsers/ |
D | hists.c | 563 if (!he->depth || unfold) in hist_entry__set_folding() 1792 h->depth); in hist_browser__refresh() 1797 hist_browser__show_no_entry(hb, row, h->depth + 1); in hist_browser__refresh() 2089 he->depth + 1); in hist_browser__fprintf_hierarchy_entry() 2107 h->depth); in hist_browser__fprintf()
|
/tools/include/uapi/linux/ |
D | pkt_sched.h | 231 unsigned int depth; /* max number of packets per flow */ member
|