HomeSort by: relevance | last modified time | path
    Searched defs:kn (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/crypto/adiantum/
adiantum.h 45 uint32_t kn[268]; /* NH key */ member in struct:adiantum
  /src/sys/nfs/
nfs_kq.c 189 filt_nfsdetach(struct knote *kn)
191 struct vnode *vp = (struct vnode *)kn->kn_hook;
194 vn_knote_detach(vp, kn);
220 filt_nfsread(struct knote *kn, long hint)
222 struct vnode *vp = (struct vnode *)kn->kn_hook;
232 knote_set_eof(kn, EV_ONESHOT);
236 kn->kn_data = vp->v_size - ((file_t *)kn->kn_obj)->f_offset;
237 rv = (kn->kn_data != 0);
242 kn->kn_data = vp->v_size - ((file_t *)kn->kn_obj)->f_offset
299 struct knote *kn; local
    [all...]
  /src/sys/kern/
sys_epoll.c 559 struct knote *kn, *tmpkn; local
570 SLIST_FOREACH_SAFE(kn, &currfp->f_kqueue->kq_sel.sel_klist,
572 targetfp = fd_getfile(kn->kn_kevent.kext_epfd);
578 kn->kn_kevent.kext_epfd;
580 kn->kn_kevent.kext_fd;
585 fd_putfile(kn->kn_kevent.kext_epfd);
kern_event.c 156 knote_free(struct knote *kn)
158 struct knote_impl *ki = KNOTE_TO_KIMPL(kn);
165 knote_foplock_enter(struct knote *kn)
167 mutex_enter(&KNOTE_TO_KIMPL(kn)->ki_foplock);
171 knote_foplock_exit(struct knote *kn)
173 mutex_exit(&KNOTE_TO_KIMPL(kn)->ki_foplock);
177 knote_foplock_owned(struct knote *kn)
179 return mutex_owned(&KNOTE_TO_KIMPL(kn)->ki_foplock);
197 filt_nopdetach(struct knote *kn __unused)
202 filt_nopevent(struct knote *kn __unused, long hint __unused
1014 struct knote *kn, *tmpkn; local
1209 struct knote *kn; local
1260 struct knote *kn; local
1401 struct knote *kn = knx; local
1897 struct knote *kn, *newkn; local
2168 const struct knote *kn; local
2204 const struct knote *kn; local
2279 struct knote *kn, *marker; local
2654 struct knote *kn; local
2775 struct knote *kn, *tmpkn; local
2799 struct knote *kn; local
3002 struct knote *kn; local
    [all...]
  /src/games/larn/
monster.c 293 u_char *p, *kn, *pm; local
430 kn = &know[i][j];
435 *p = *kn = 0;
442 *kn = 0;
448 *kn = 0;
455 *kn = 0;
  /src/bin/ps/
ps.c 846 struct pinfo kn; local
887 kn = ki[src];
890 ki[dst + ndst - 1] = kn;
895 kn = ki[src];
898 ki[dst + ndst] = kn;
  /src/sys/compat/linux/common/
linux_inotify.c 426 struct knote *kn, *tmpkn; local
582 SLIST_FOREACH_SAFE(kn, &wp->f_vnode->v_klist->vk_klist,
584 if (kn->kn_fop == &inotify_filtops
585 && ifd == kn->kn_kevent.udata) {
586 mutex_enter(&kn->kn_kq->kq_lock);
588 kn->kn_sfflags |= kev.fflags;
590 kn->kn_sfflags = kev.fflags;
592 kn->kn_sfflags;
593 mutex_exit(&kn->kn_kq->kq_lock);
699 inotify_filt_attach(struct knote *kn)
    [all...]
  /src/sys/miscfs/genfs/
genfs_vnops.c 496 filt_genfsdetach(struct knote *kn)
498 struct vnode *vp = (struct vnode *)kn->kn_hook;
500 vn_knote_detach(vp, kn);
504 filt_genfsread(struct knote *kn, long hint)
506 struct vnode *vp = (struct vnode *)kn->kn_hook;
516 knote_set_eof(kn, EV_ONESHOT);
520 kn->kn_data = vp->v_size - ((file_t *)kn->kn_obj)->f_offset;
521 rv = (kn->kn_data != 0);
526 kn->kn_data = vp->v_size - ((file_t *)kn->kn_obj)->f_offset
615 struct knote *kn; local
    [all...]

Completed in 26 milliseconds