• Home
  • Raw
  • Download

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()
275 static bool trace_uprobe_is_busy(struct dyn_event *ev) in trace_uprobe_is_busy() argument
277 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_is_busy()
311 int argc, const char **argv, struct dyn_event *ev) in trace_uprobe_match() argument
313 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_match()
736 static int trace_uprobe_release(struct dyn_event *ev) in trace_uprobe_release() argument
738 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_release()
744 static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev) in trace_uprobe_show() argument
746 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_show()
766 struct dyn_event *ev = v; in probes_seq_show() local
768 if (!is_trace_uprobe(ev)) in probes_seq_show()
771 return trace_uprobe_show(m, ev); in probes_seq_show()
817 struct dyn_event *ev = v; in probes_profile_seq_show() local
820 if (!is_trace_uprobe(ev)) in probes_profile_seq_show()
823 tu = to_trace_uprobe(ev); in probes_profile_seq_show()