Lines Matching refs:ev
38 static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev);
39 static int trace_uprobe_release(struct dyn_event *ev);
40 static bool trace_uprobe_is_busy(struct dyn_event *ev);
42 int argc, const char **argv, struct dyn_event *ev);
67 static bool is_trace_uprobe(struct dyn_event *ev) in is_trace_uprobe() argument
69 return ev->ops == &trace_uprobe_ops; in is_trace_uprobe()
72 static struct trace_uprobe *to_trace_uprobe(struct dyn_event *ev) in to_trace_uprobe() argument
74 return container_of(ev, struct trace_uprobe, devent); in to_trace_uprobe()
278 static bool trace_uprobe_is_busy(struct dyn_event *ev) in trace_uprobe_is_busy() argument
280 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_is_busy()
314 int argc, const char **argv, struct dyn_event *ev) in trace_uprobe_match() argument
316 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_match()
735 static int trace_uprobe_release(struct dyn_event *ev) in trace_uprobe_release() argument
737 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_release()
743 static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev) in trace_uprobe_show() argument
745 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_show()
765 struct dyn_event *ev = v; in probes_seq_show() local
767 if (!is_trace_uprobe(ev)) in probes_seq_show()
770 return trace_uprobe_show(m, ev); in probes_seq_show()
816 struct dyn_event *ev = v; in probes_profile_seq_show() local
819 if (!is_trace_uprobe(ev)) in probes_profile_seq_show()
822 tu = to_trace_uprobe(ev); in probes_profile_seq_show()