Lines Matching defs:kn
1139 usb_filter_detach(struct knote *kn)
1141 struct usb_fifo *f = kn->kn_hook;
1142 knlist_remove(&f->selinfo.si_note, kn, 0);
1146 usb_filter_write(struct knote *kn, long hint)
1154 f = kn->kn_hook;
1187 usb_filter_read(struct knote *kn, long hint)
1195 f = kn->kn_hook;
1245 usb_kqfilter(struct cdev* dev, struct knote *kn)
1262 switch (kn->kn_filter) {
1266 kn->kn_fop = &usb_filtops_write;
1273 kn->kn_fop = &usb_filtops_read;
1283 kn->kn_hook = f;
1285 knlist_add(&f->selinfo.si_note, kn, 1);