Lines Matching defs:kev
428 struct kevent kev;
514 memset(&kev, 0, sizeof(kev));
515 EV_SET(&kev, wd, inotify_filtid, EV_ADD|EV_ENABLE,
518 kev.flags |= EV_ONESHOT;
519 kev.fflags |= inotify_mask_to_kevent_fflags(mask,
522 error = kevent1(retval, ifd->ifd_kqfd, &kev, 1, NULL, 0, NULL,
571 kev.fflags = NOTE_DELETE | NOTE_REVOKE
588 kn->kn_sfflags |= kev.fflags;
590 kn->kn_sfflags = kev.fflags;
621 struct kevent kev;
646 memset(&kev, 0, sizeof(kev));
647 EV_SET(&kev, wd, EVFILT_VNODE, EV_DELETE, 0, 0, 0);
648 error = kevent1(&retval, ifd->ifd_kqfd, &kev, 1, NULL, 0, NULL, &k_ops);