Home
last modified time | relevance | path

Searched refs:event_call (Results 1 – 10 of 10) sorted by relevance

/linux-4.4.14/kernel/trace/
Dtrace_export.c76 ret = trace_define_field(event_call, #type, #item, \
85 ret = trace_define_field(event_call, #type, #item, \
98 ret = trace_define_field(event_call, type_str, #item, \
109 ret = trace_define_field(event_call, #type "[" #len "]", #item, \
119 ret = trace_define_field(event_call, #type, #item, \
128 ftrace_define_fields_##name(struct trace_event_call *event_call) \
Dtrace_events.c74 trace_get_fields(struct trace_event_call *event_call) in trace_get_fields() argument
76 if (!event_call->class->get_fields) in trace_get_fields()
77 return &event_call->class->fields; in trace_get_fields()
78 return event_call->class->get_fields(event_call); in trace_get_fields()
239 struct trace_event_call *event_call = trace_file->event_call; in trace_event_buffer_reserve() local
251 event_call->event.type, len, in trace_event_buffer_reserve()
265 struct trace_event_call *event_call; in output_printk() local
273 event_call = fbuffer->trace_file->event_call; in output_printk()
274 if (!event_call || !event_call->event.funcs || in output_printk()
275 !event_call->event.funcs->trace) in output_printk()
[all …]
Dtrace_events_filter.c692 if (file->event_call->flags & TRACE_EVENT_FL_USE_CALL_FILTER) in event_filter()
693 return file->event_call->filter; in event_filter()
829 struct trace_event_call *call = file->event_call; in filter_disable()
886 struct trace_event_call *call = file->event_call; in __remove_filter()
909 struct trace_event_call *call = file->event_call; in __free_subsystem_filter()
1733 struct trace_event_call *call = file->event_call; in event_set_filtered_flag()
1744 struct trace_event_call *call = file->event_call; in event_set_filter()
1754 struct trace_event_call *call = file->event_call; in event_clear_filter()
1765 struct trace_event_call *call = file->event_call; in event_set_no_set_filter_flag()
1776 struct trace_event_call *call = file->event_call; in event_clear_no_set_filter_flag()
[all …]
Dtrace_kprobe.c917 WARN_ON(call != trace_file->event_call); in __kprobe_trace_func()
965 WARN_ON(call != trace_file->event_call); in __kretprobe_trace_func()
1072 static int kprobe_event_define_fields(struct trace_event_call *event_call) in kprobe_event_define_fields() argument
1076 struct trace_kprobe *tk = (struct trace_kprobe *)event_call->data; in kprobe_event_define_fields()
1083 ret = trace_define_field(event_call, parg->type->fmttype, in kprobe_event_define_fields()
1095 static int kretprobe_event_define_fields(struct trace_event_call *event_call) in kretprobe_event_define_fields() argument
1099 struct trace_kprobe *tk = (struct trace_kprobe *)event_call->data; in kretprobe_event_define_fields()
1107 ret = trace_define_field(event_call, parg->type->fmttype, in kretprobe_event_define_fields()
1361 if (file->event_call == &tk->tp.call) in find_trace_probe_file()
Dtrace_events_trigger.c724 ret = create_event_filter(file->event_call, filter_str, false, &filter); in set_trigger_filter()
1097 enable_data->file->event_call->class->system, in event_enable_trigger_print()
1098 trace_event_name(enable_data->file->event_call)); in event_enable_trigger_print()
1126 module_put(enable_data->file->event_call->mod); in event_enable_trigger_free()
1257 ret = try_module_get(event_enable_file->event_call->mod); in event_enable_trigger_func()
1285 module_put(event_enable_file->event_call->mod); in event_enable_trigger_func()
Dtrace_uprobe.c797 WARN_ON(call != trace_file->event_call); in __uprobe_trace_func()
985 static int uprobe_event_define_fields(struct trace_event_call *event_call) in uprobe_event_define_fields() argument
989 struct trace_uprobe *tu = event_call->data; in uprobe_event_define_fields()
1003 ret = trace_define_field(event_call, parg->type->fmttype, in uprobe_event_define_fields()
Dtrace_probe.h56 ret = trace_define_field(event_call, #type, name, \
/linux-4.4.14/include/trace/
Dperf.h37 struct trace_event_call *event_call = __data; \
50 head = this_cpu_ptr(event_call->perf_events); \
60 event_call->event.type, &__regs, &rctx); \
Dtrace_events.h359 ret = trace_define_field(event_call, #type, #item, \
368 ret = trace_define_field(event_call, #type, #item, \
386 ret = trace_define_field(event_call, type_str, #item, \
396 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
410 trace_event_define_fields_##call(struct trace_event_call *event_call) \
/linux-4.4.14/include/linux/
Dtrace_events.h361 struct trace_event_call *event_call; member