Lines Matching refs:ev
44 static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev);
45 static int trace_uprobe_release(struct dyn_event *ev);
46 static bool trace_uprobe_is_busy(struct dyn_event *ev);
48 int argc, const char **argv, struct dyn_event *ev);
73 static bool is_trace_uprobe(struct dyn_event *ev) in is_trace_uprobe() argument
75 return ev->ops == &trace_uprobe_ops; in is_trace_uprobe()
78 static struct trace_uprobe *to_trace_uprobe(struct dyn_event *ev) in to_trace_uprobe() argument
80 return container_of(ev, struct trace_uprobe, devent); in to_trace_uprobe()
291 static bool trace_uprobe_is_busy(struct dyn_event *ev) in trace_uprobe_is_busy() argument
293 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_is_busy()
327 int argc, const char **argv, struct dyn_event *ev) in trace_uprobe_match() argument
329 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_match()
732 static int trace_uprobe_release(struct dyn_event *ev) in trace_uprobe_release() argument
734 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_release()
740 static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev) in trace_uprobe_show() argument
742 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_show()
762 struct dyn_event *ev = v; in probes_seq_show() local
764 if (!is_trace_uprobe(ev)) in probes_seq_show()
767 return trace_uprobe_show(m, ev); in probes_seq_show()
813 struct dyn_event *ev = v; in probes_profile_seq_show() local
816 if (!is_trace_uprobe(ev)) in probes_profile_seq_show()
819 tu = to_trace_uprobe(ev); in probes_profile_seq_show()