Lines Matching refs:call
281 struct ftrace_event_call *call = &event_funcgraph_entry; in __trace_graph_entry() local
295 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_graph_entry()
396 struct ftrace_event_call *call = &event_funcgraph_exit; in __trace_graph_return() local
410 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_graph_return()
768 struct ftrace_graph_ent *call; in print_graph_entry_leaf() local
773 call = &entry->graph_ent; in print_graph_entry_leaf()
787 cpu_data->depth = call->depth - 1; in print_graph_entry_leaf()
790 if (call->depth < FTRACE_RETFUNC_DEPTH) in print_graph_entry_leaf()
791 cpu_data->enter_funcs[call->depth] = 0; in print_graph_entry_leaf()
798 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_leaf()
801 trace_seq_printf(s, "%ps();\n", (void *)call->func); in print_graph_entry_leaf()
811 struct ftrace_graph_ent *call = &entry->graph_ent; in print_graph_entry_nested() local
820 cpu_data->depth = call->depth; in print_graph_entry_nested()
823 if (call->depth < FTRACE_RETFUNC_DEPTH) in print_graph_entry_nested()
824 cpu_data->enter_funcs[call->depth] = call->func; in print_graph_entry_nested()
831 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_nested()
834 trace_seq_printf(s, "%ps() {\n", (void *)call->func); in print_graph_entry_nested()
992 struct ftrace_graph_ent *call = &field->graph_ent; in print_graph_entry() local
997 if (check_irq_entry(iter, flags, call->func, call->depth)) in print_graph_entry()
1000 print_graph_prologue(iter, s, TRACE_GRAPH_ENT, call->func, flags); in print_graph_entry()