• Home
  • Raw
  • Download

Lines Matching refs:trace

98 				struct ftrace_graph_ent *trace,  in __trace_graph_entry()  argument
112 entry->graph_ent = *trace; in __trace_graph_entry()
127 int trace_graph_entry(struct ftrace_graph_ent *trace) in trace_graph_entry() argument
147 if (ftrace_graph_notrace_addr(trace->func)) { in trace_graph_entry()
159 if (ftrace_graph_ignore_func(trace)) in trace_graph_entry()
178 ret = __trace_graph_entry(tr, trace, flags, pc); in trace_graph_entry()
218 struct ftrace_graph_ret *trace, in __trace_graph_return() argument
232 entry->ret = *trace; in __trace_graph_return()
237 void trace_graph_return(struct ftrace_graph_ret *trace) in trace_graph_return() argument
246 ftrace_graph_addr_finish(trace); in trace_graph_return()
259 __trace_graph_return(tr, trace, flags, pc); in trace_graph_return()
274 static void trace_graph_thresh_return(struct ftrace_graph_ret *trace) in trace_graph_thresh_return() argument
276 ftrace_graph_addr_finish(trace); in trace_graph_thresh_return()
284 (trace->rettime - trace->calltime < tracing_thresh)) in trace_graph_thresh_return()
287 trace_graph_return(trace); in trace_graph_thresh_return()
901 print_graph_return(struct ftrace_graph_ret *trace, struct trace_seq *s, in print_graph_return() argument
905 unsigned long long duration = trace->rettime - trace->calltime; in print_graph_return()
913 if (check_irq_return(iter, flags, trace->depth)) in print_graph_return()
927 cpu_data->depth = trace->depth - 1; in print_graph_return()
929 if (trace->depth < FTRACE_RETFUNC_DEPTH && in print_graph_return()
930 !WARN_ON_ONCE(trace->depth < 0)) { in print_graph_return()
931 if (cpu_data->enter_funcs[trace->depth] != trace->func) in print_graph_return()
933 cpu_data->enter_funcs[trace->depth] = 0; in print_graph_return()
943 for (i = 0; i < trace->depth * TRACE_GRAPH_INDENT; i++) in print_graph_return()
956 trace_seq_printf(s, "} /* %ps */\n", (void *)trace->func); in print_graph_return()
961 trace->overrun); in print_graph_return()
963 print_graph_irq(iter, trace->func, TRACE_GRAPH_RET, in print_graph_return()
1018 ret = event->funcs->trace(iter, sym_flags, event); in print_graph_comment()
1268 .trace = print_graph_function_event,