Lines Matching refs:ev
39 static int trace_kprobe_show(struct seq_file *m, struct dyn_event *ev);
40 static int trace_kprobe_release(struct dyn_event *ev);
41 static bool trace_kprobe_is_busy(struct dyn_event *ev);
43 int argc, const char **argv, struct dyn_event *ev);
64 static bool is_trace_kprobe(struct dyn_event *ev) in is_trace_kprobe() argument
66 return ev->ops == &trace_kprobe_ops; in is_trace_kprobe()
69 static struct trace_kprobe *to_trace_kprobe(struct dyn_event *ev) in to_trace_kprobe() argument
71 return container_of(ev, struct trace_kprobe, devent); in to_trace_kprobe()
134 static bool trace_kprobe_is_busy(struct dyn_event *ev) in trace_kprobe_is_busy() argument
136 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_is_busy()
164 int argc, const char **argv, struct dyn_event *ev) in trace_kprobe_match() argument
166 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_match()
905 static int trace_kprobe_release(struct dyn_event *ev) in trace_kprobe_release() argument
907 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_release()
915 static int trace_kprobe_show(struct seq_file *m, struct dyn_event *ev) in trace_kprobe_show() argument
917 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_show()
941 struct dyn_event *ev = v; in probes_seq_show() local
943 if (!is_trace_kprobe(ev)) in probes_seq_show()
946 return trace_kprobe_show(m, ev); in probes_seq_show()
992 struct dyn_event *ev = v; in probes_profile_seq_show() local
995 if (!is_trace_kprobe(ev)) in probes_profile_seq_show()
998 tk = to_trace_kprobe(ev); in probes_profile_seq_show()