Lines Matching refs:depth

24 	int		depth;  member
195 .depth = 0, in __trace_graph_function()
199 .depth = 0, in __trace_graph_function()
651 cpu_data->depth = call->depth - 1; in print_graph_entry_leaf()
654 if (call->depth < FTRACE_RETFUNC_DEPTH && in print_graph_entry_leaf()
655 !WARN_ON_ONCE(call->depth < 0)) in print_graph_entry_leaf()
656 cpu_data->enter_funcs[call->depth] = 0; in print_graph_entry_leaf()
663 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_leaf()
689 cpu_data->depth = call->depth; in print_graph_entry_nested()
692 if (call->depth < FTRACE_RETFUNC_DEPTH && in print_graph_entry_nested()
693 !WARN_ON_ONCE(call->depth < 0)) in print_graph_entry_nested()
694 cpu_data->enter_funcs[call->depth] = call->func; in print_graph_entry_nested()
701 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_nested()
773 unsigned long addr, int depth) in check_irq_entry() argument
803 *depth_irq = depth; in check_irq_entry()
819 check_irq_return(struct trace_iterator *iter, u32 flags, int depth) in check_irq_return() argument
851 if (*depth_irq >= depth) { in check_irq_return()
872 if (check_irq_entry(iter, flags, call->func, call->depth)) in print_graph_entry()
911 if (check_irq_return(iter, flags, trace->depth)) in print_graph_return()
925 cpu_data->depth = trace->depth - 1; in print_graph_return()
927 if (trace->depth < FTRACE_RETFUNC_DEPTH && in print_graph_return()
928 !WARN_ON_ONCE(trace->depth < 0)) { in print_graph_return()
929 if (cpu_data->enter_funcs[trace->depth] != trace->func) in print_graph_return()
931 cpu_data->enter_funcs[trace->depth] = 0; in print_graph_return()
941 for (i = 0; i < trace->depth * TRACE_GRAPH_INDENT; i++) in print_graph_return()
975 int depth = 0; in print_graph_comment() local
980 depth = per_cpu_ptr(data->cpu_data, iter->cpu)->depth; in print_graph_comment()
988 if (depth > 0) in print_graph_comment()
989 for (i = 0; i < (depth + 1) * TRACE_GRAPH_INDENT; i++) in print_graph_comment()
1220 int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); in graph_trace_open() local
1225 *depth = 0; in graph_trace_open()