Lines Matching refs:call
286 struct trace_event_call *call = &event_funcgraph_entry; in __trace_graph_entry() local
297 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_graph_entry()
398 struct trace_event_call *call = &event_funcgraph_exit; in __trace_graph_return() local
409 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_graph_return()
769 struct ftrace_graph_ent *call; in print_graph_entry_leaf() local
774 call = &entry->graph_ent; in print_graph_entry_leaf()
788 cpu_data->depth = call->depth - 1; in print_graph_entry_leaf()
791 if (call->depth < FTRACE_RETFUNC_DEPTH) in print_graph_entry_leaf()
792 cpu_data->enter_funcs[call->depth] = 0; in print_graph_entry_leaf()
799 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_leaf()
802 trace_seq_printf(s, "%ps();\n", (void *)call->func); in print_graph_entry_leaf()
812 struct ftrace_graph_ent *call = &entry->graph_ent; in print_graph_entry_nested() local
822 cpu_data->depth = call->depth; in print_graph_entry_nested()
825 if (call->depth < FTRACE_RETFUNC_DEPTH) in print_graph_entry_nested()
826 cpu_data->enter_funcs[call->depth] = call->func; in print_graph_entry_nested()
833 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_nested()
836 trace_seq_printf(s, "%ps() {\n", (void *)call->func); in print_graph_entry_nested()
995 struct ftrace_graph_ent *call = &field->graph_ent; in print_graph_entry() local
1000 if (check_irq_entry(iter, flags, call->func, call->depth)) in print_graph_entry()
1003 print_graph_prologue(iter, s, TRACE_GRAPH_ENT, call->func, flags); in print_graph_entry()