Lines Matching refs:call
87 struct trace_event_call call; member
973 static struct list_head *user_event_get_fields(struct trace_event_call *call) in user_event_get_fields() argument
975 struct user_event *user = (struct user_event *)call->data; in user_event_get_fields()
1434 user->call.print_fmt = print_fmt; in user_event_create_print_fmt()
1475 ret = trace_add_event_call(&user->call); in user_event_set_call_visible()
1477 ret = trace_remove_event_call(&user->call); in user_event_set_call_visible()
1508 kfree(user->call.print_fmt); in destroy_user_event()
1636 perf_head = this_cpu_ptr(user->call.perf_events); in user_event_perf()
1660 user->call.event.type, 1, regs, in user_event_perf()
1713 static int user_event_reg(struct trace_event_call *call, in user_event_reg() argument
1717 struct user_event *user = (struct user_event *)call->data; in user_event_reg()
1725 ret = tracepoint_probe_register(call->tp, in user_event_reg()
1726 call->class->probe, in user_event_reg()
1733 tracepoint_probe_unregister(call->tp, in user_event_reg()
1734 call->class->probe, in user_event_reg()
1740 ret = tracepoint_probe_register(call->tp, in user_event_reg()
1741 call->class->perf_probe, in user_event_reg()
1748 tracepoint_probe_unregister(call->tp, in user_event_reg()
1749 call->class->perf_probe, in user_event_reg()
1822 head = trace_get_fields(&user->call); in user_event_show()
1952 ret = register_trace_event(&user->call.event); in user_event_trace_register()
1960 unregister_trace_event(&user->call.event); in user_event_trace_register()
1978 user->call.name = multi_name; in user_event_set_tp_name()
1985 user->call.name = user->reg_name; in user_event_set_tp_name()
2146 user->call.data = user; in user_event_parse()
2147 user->call.class = &user->class; in user_event_parse()
2148 user->call.flags = TRACE_EVENT_FL_TRACEPOINT; in user_event_parse()
2149 user->call.tp = &user->tracepoint; in user_event_parse()
2150 user->call.event.funcs = &user_event_funcs; in user_event_parse()
2186 dyn_event_add(&user->devent, &user->call); in user_event_parse()
2199 kfree(user->call.print_fmt); in user_event_parse()