Lines Matching refs:ev
69 static int synth_event_show(struct seq_file *m, struct dyn_event *ev);
70 static int synth_event_release(struct dyn_event *ev);
71 static bool synth_event_is_busy(struct dyn_event *ev);
73 int argc, const char **argv, struct dyn_event *ev);
83 static bool is_synth_event(struct dyn_event *ev) in is_synth_event() argument
85 return ev->ops == &synth_event_ops; in is_synth_event()
88 static struct synth_event *to_synth_event(struct dyn_event *ev) in to_synth_event() argument
90 return container_of(ev, struct synth_event, devent); in to_synth_event()
93 static bool synth_event_is_busy(struct dyn_event *ev) in synth_event_is_busy() argument
95 struct synth_event *event = to_synth_event(ev); in synth_event_is_busy()
101 int argc, const char **argv, struct dyn_event *ev) in synth_event_match() argument
103 struct synth_event *sev = to_synth_event(ev); in synth_event_match()
2186 static int synth_event_release(struct dyn_event *ev) in synth_event_release() argument
2188 struct synth_event *event = to_synth_event(ev); in synth_event_release()
2201 dyn_event_remove(ev); in synth_event_release()
2234 static int synth_event_show(struct seq_file *m, struct dyn_event *ev) in synth_event_show() argument
2236 struct synth_event *event = to_synth_event(ev); in synth_event_show()
2245 struct dyn_event *ev = v; in synth_events_seq_show() local
2247 if (!is_synth_event(ev)) in synth_events_seq_show()
2250 return __synth_event_show(m, to_synth_event(ev)); in synth_events_seq_show()