• Home
  • Raw
  • Download

Lines Matching refs:ev

40 static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev);
41 static int trace_uprobe_release(struct dyn_event *ev);
42 static bool trace_uprobe_is_busy(struct dyn_event *ev);
44 int argc, const char **argv, struct dyn_event *ev);
69 static bool is_trace_uprobe(struct dyn_event *ev) in is_trace_uprobe() argument
71 return ev->ops == &trace_uprobe_ops; in is_trace_uprobe()
74 static struct trace_uprobe *to_trace_uprobe(struct dyn_event *ev) in to_trace_uprobe() argument
76 return container_of(ev, struct trace_uprobe, devent); in to_trace_uprobe()
277 static bool trace_uprobe_is_busy(struct dyn_event *ev) in trace_uprobe_is_busy() argument
279 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_is_busy()
313 int argc, const char **argv, struct dyn_event *ev) in trace_uprobe_match() argument
315 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_match()
739 static int trace_uprobe_release(struct dyn_event *ev) in trace_uprobe_release() argument
741 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_release()
747 static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev) in trace_uprobe_show() argument
749 struct trace_uprobe *tu = to_trace_uprobe(ev); in trace_uprobe_show()
769 struct dyn_event *ev = v; in probes_seq_show() local
771 if (!is_trace_uprobe(ev)) in probes_seq_show()
774 return trace_uprobe_show(m, ev); in probes_seq_show()
820 struct dyn_event *ev = v; in probes_profile_seq_show() local
823 if (!is_trace_uprobe(ev)) in probes_profile_seq_show()
826 tu = to_trace_uprobe(ev); in probes_profile_seq_show()