Lines Matching refs:hint
109 static int filt_kqueue(struct knote *, long hint);
112 static int filt_proc(struct knote *, long hint);
117 static int filt_timer(struct knote *, long hint);
121 static int filt_user(struct knote *, long hint);
199 filt_nopevent(struct knote *kn __unused, long hint __unused)
329 * N.B. NOTE_SUBMIT will never be set in the "hint" argument
594 filter_event(struct knote *kn, long hint, bool submitting)
604 rv = kn->kn_fop->f_event(kn, hint);
607 rv = kn->kn_fop->f_event(kn, hint);
884 filt_kqueue(struct knote *kn, long hint)
891 if (hint != NOTE_SUBMIT)
895 if (hint != NOTE_SUBMIT)
989 filt_proc(struct knote *kn, long hint)
999 KASSERT((hint & (NOTE_EXEC | NOTE_EXIT | NOTE_FORK)) == 0);
1550 filt_timer(struct knote *kn, long hint)
1590 filt_user(struct knote *kn, long hint)
1669 filt_seltrue(struct knote *kn, long hint)
2770 knote(struct klist *list, long hint)
2783 if (filter_event(kn, hint, true)) {