Lines Matching refs:ev
379 static int synth_event_show(struct seq_file *m, struct dyn_event *ev);
380 static int synth_event_release(struct dyn_event *ev);
381 static bool synth_event_is_busy(struct dyn_event *ev);
383 int argc, const char **argv, struct dyn_event *ev);
413 static bool is_synth_event(struct dyn_event *ev) in is_synth_event() argument
415 return ev->ops == &synth_event_ops; in is_synth_event()
418 static struct synth_event *to_synth_event(struct dyn_event *ev) in to_synth_event() argument
420 return container_of(ev, struct synth_event, devent); in to_synth_event()
423 static bool synth_event_is_busy(struct dyn_event *ev) in synth_event_is_busy() argument
425 struct synth_event *event = to_synth_event(ev); in synth_event_is_busy()
431 int argc, const char **argv, struct dyn_event *ev) in synth_event_match() argument
433 struct synth_event *sev = to_synth_event(ev); in synth_event_match()
1407 static int synth_event_release(struct dyn_event *ev) in synth_event_release() argument
1409 struct synth_event *event = to_synth_event(ev); in synth_event_release()
1419 dyn_event_remove(ev); in synth_event_release()
1444 static int synth_event_show(struct seq_file *m, struct dyn_event *ev) in synth_event_show() argument
1446 struct synth_event *event = to_synth_event(ev); in synth_event_show()
1455 struct dyn_event *ev = v; in synth_events_seq_show() local
1457 if (!is_synth_event(ev)) in synth_events_seq_show()
1460 return __synth_event_show(m, to_synth_event(ev)); in synth_events_seq_show()