Lines Matching refs:kn
460 filt_putterdetach(struct knote *kn)
462 struct putter_instance *pi = kn->kn_hook;
466 selremove_knote(&pi->pi_sel, kn);
472 filt_putter(struct knote *kn, long hint)
474 struct putter_instance *pi = kn->kn_hook;
488 kn->kn_data = pi->pi_pop->pop_waitcount(pi->pi_private);
489 rv = kn->kn_data != 0;
502 putter_fop_kqfilter(file_t *fp, struct knote *kn)
508 switch (kn->kn_filter) {
510 kn->kn_fop = &putter_filtops;
511 kn->kn_hook = pi;
514 selrecord_knote(&pi->pi_sel, kn);
519 kn->kn_fop = &seltrue_filtops;