Lines Matching refs:ev
41 static int trace_kprobe_show(struct seq_file *m, struct dyn_event *ev);
42 static int trace_kprobe_release(struct dyn_event *ev);
43 static bool trace_kprobe_is_busy(struct dyn_event *ev);
45 int argc, const char **argv, struct dyn_event *ev);
66 static bool is_trace_kprobe(struct dyn_event *ev) in is_trace_kprobe() argument
68 return ev->ops == &trace_kprobe_ops; in is_trace_kprobe()
71 static struct trace_kprobe *to_trace_kprobe(struct dyn_event *ev) in to_trace_kprobe() argument
73 return container_of(ev, struct trace_kprobe, devent); in to_trace_kprobe()
133 static bool trace_kprobe_is_busy(struct dyn_event *ev) in trace_kprobe_is_busy() argument
135 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_is_busy()
163 int argc, const char **argv, struct dyn_event *ev) in trace_kprobe_match() argument
165 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_match()
1149 static int trace_kprobe_release(struct dyn_event *ev) in trace_kprobe_release() argument
1151 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_release()
1159 static int trace_kprobe_show(struct seq_file *m, struct dyn_event *ev) in trace_kprobe_show() argument
1161 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_show()
1187 struct dyn_event *ev = v; in probes_seq_show() local
1189 if (!is_trace_kprobe(ev)) in probes_seq_show()
1192 return trace_kprobe_show(m, ev); in probes_seq_show()
1238 struct dyn_event *ev = v; in probes_profile_seq_show() local
1242 if (!is_trace_kprobe(ev)) in probes_profile_seq_show()
1245 tk = to_trace_kprobe(ev); in probes_profile_seq_show()