Lines Matching refs:ev
88 static int synth_event_show(struct seq_file *m, struct dyn_event *ev);
89 static int synth_event_release(struct dyn_event *ev);
90 static bool synth_event_is_busy(struct dyn_event *ev);
92 int argc, const char **argv, struct dyn_event *ev);
102 static bool is_synth_event(struct dyn_event *ev) in is_synth_event() argument
104 return ev->ops == &synth_event_ops; in is_synth_event()
107 static struct synth_event *to_synth_event(struct dyn_event *ev) in to_synth_event() argument
109 return container_of(ev, struct synth_event, devent); in to_synth_event()
112 static bool synth_event_is_busy(struct dyn_event *ev) in synth_event_is_busy() argument
114 struct synth_event *event = to_synth_event(ev); in synth_event_is_busy()
120 int argc, const char **argv, struct dyn_event *ev) in synth_event_match() argument
122 struct synth_event *sev = to_synth_event(ev); in synth_event_match()
2206 static int synth_event_release(struct dyn_event *ev) in synth_event_release() argument
2208 struct synth_event *event = to_synth_event(ev); in synth_event_release()
2221 dyn_event_remove(ev); in synth_event_release()
2254 static int synth_event_show(struct seq_file *m, struct dyn_event *ev) in synth_event_show() argument
2256 struct synth_event *event = to_synth_event(ev); in synth_event_show()
2265 struct dyn_event *ev = v; in synth_events_seq_show() local
2267 if (!is_synth_event(ev)) in synth_events_seq_show()
2270 return __synth_event_show(m, to_synth_event(ev)); in synth_events_seq_show()