Lines Matching defs:kn
268 filt_timerfddetach(struct knote *kn)
270 struct timerfd *tfd = kn->kn_hook;
273 knlist_remove(&tfd->tfd_sel.si_note, kn, 1);
278 filt_timerfdread(struct knote *kn, long hint)
280 struct timerfd *tfd = kn->kn_hook;
283 kn->kn_data = (int64_t)tfd->tfd_count;
294 timerfd_kqfilter(struct file *fp, struct knote *kn)
298 if (kn->kn_filter != EVFILT_READ)
301 kn->kn_fop = &timerfd_rfiltops;
302 kn->kn_hook = tfd;
303 knlist_add(&tfd->tfd_sel.si_note, kn, 0);