• Home
  • Raw
  • Download

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()
135 static bool trace_kprobe_is_busy(struct dyn_event *ev) in trace_kprobe_is_busy() argument
137 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_is_busy()
165 int argc, const char **argv, struct dyn_event *ev) in trace_kprobe_match() argument
167 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_match()
1095 static int trace_kprobe_release(struct dyn_event *ev) in trace_kprobe_release() argument
1097 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_release()
1105 static int trace_kprobe_show(struct seq_file *m, struct dyn_event *ev) in trace_kprobe_show() argument
1107 struct trace_kprobe *tk = to_trace_kprobe(ev); in trace_kprobe_show()
1133 struct dyn_event *ev = v; in probes_seq_show() local
1135 if (!is_trace_kprobe(ev)) in probes_seq_show()
1138 return trace_kprobe_show(m, ev); in probes_seq_show()
1184 struct dyn_event *ev = v; in probes_profile_seq_show() local
1188 if (!is_trace_kprobe(ev)) in probes_profile_seq_show()
1191 tk = to_trace_kprobe(ev); in probes_profile_seq_show()