/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 in function:nfs_kqfilter [all...] |
/src/sys/kern/ |
sys_epoll.c | 559 struct knote *kn, *tmpkn; local in function:epoll_recover_watch_tree 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 | 153 knote_free(struct knote *kn) 155 struct knote_impl *ki = KNOTE_TO_KIMPL(kn); 162 knote_foplock_enter(struct knote *kn) 164 mutex_enter(&KNOTE_TO_KIMPL(kn)->ki_foplock); 168 knote_foplock_exit(struct knote *kn) 170 mutex_exit(&KNOTE_TO_KIMPL(kn)->ki_foplock); 174 knote_foplock_owned(struct knote *kn) 176 return mutex_owned(&KNOTE_TO_KIMPL(kn)->ki_foplock); 194 filt_nopdetach(struct knote *kn __unused) 199 filt_nopevent(struct knote *kn __unused, long hint __unused 1011 struct knote *kn, *tmpkn; local in function:knote_proc_exec 1206 struct knote *kn; local in function:knote_proc_fork 1257 struct knote *kn; local in function:knote_proc_exit 1398 struct knote *kn = knx; local in function:filt_timerexpire 1894 struct knote *kn, *newkn; local in function:kqueue_register 2165 const struct knote *kn; local in function:kqueue_printit 2201 const struct knote *kn; local in function:kqueue_check 2276 struct knote *kn, *marker; local in function:kqueue_scan 2651 struct knote *kn; local in function:kqueue_doclose 2772 struct knote *kn, *tmpkn; local in function:knote 2796 struct knote *kn; local in function:knote_fdclose 2999 struct knote *kn; local in function:klist_fini [all...] |
/src/games/larn/ |
monster.c | 293 u_char *p, *kn, *pm; local in function:speldamage 430 kn = &know[i][j]; 435 *p = *kn = 0; 442 *kn = 0; 448 *kn = 0; 455 *kn = 0;
|
/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 in function:genfs_kqfilter [all...] |
/src/sys/compat/linux/common/ |
linux_inotify.c | 426 struct knote *kn, *tmpkn; local in function:linux_sys_inotify_add_watch 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/bin/ps/ |
ps.c | 846 struct pinfo kn; local in function:descendant_sort 887 kn = ki[src]; 890 ki[dst + ndst - 1] = kn; 895 kn = ki[src]; 898 ki[dst + ndst] = kn;
|