Home
last modified time | relevance | path

Searched refs:nchanges (Results 1 – 7 of 7) sorted by relevance

/openbsd/lib/libevent/
H A Dkqueue.c56 int nchanges; member
133 if (kqop->nchanges == nevents) { in kq_insert()
167 memcpy(&kqop->changes[kqop->nchanges++], kev, sizeof(struct kevent)); in kq_insert()
198 res = kevent(kqop->kq, kqop->nchanges ? changes : NULL, kqop->nchanges, in kq_dispatch()
200 kqop->nchanges = 0; in kq_dispatch()
395 for (i = j = 0; i < kqop->nchanges; i++) { in kq_del()
404 if (kqop->nchanges != j) { in kq_del()
405 kqop->nchanges = j; in kq_del()
/openbsd/usr.sbin/apmd/
H A Dapmd.c422 int kq, nchanges; in main() local
534 nchanges = 1; in main()
538 nchanges = 2; in main()
540 if (kevent(kq, ev, nchanges, NULL, 0, &sts) == -1) in main()
/openbsd/sys/sys/
H A Devent.h373 int kevent(int kq, const struct kevent *changelist, int nchanges,
H A Dsyscallargs.h349 syscallarg(int) nchanges;
/openbsd/gnu/llvm/compiler-rt/include/sanitizer/
H A Dnetbsd_syscall_hooks.h1800 #define __sanitizer_syscall_pre_compat_50_kevent(fd, changelist, nchanges, \ argument
1803 (long long)(fd), (long long)(changelist), (long long)(nchanges), \
1806 res, fd, changelist, nchanges, eventlist, nevents, timeout) \ argument
1808 res, (long long)(fd), (long long)(changelist), (long long)(nchanges), \
2406 #define __sanitizer_syscall_pre___kevent50(fd, changelist, nchanges, \ argument
2409 (long long)(fd), (long long)(changelist), (long long)(nchanges), \
2411 #define __sanitizer_syscall_post___kevent50(res, fd, changelist, nchanges, \ argument
2414 res, (long long)(fd), (long long)(changelist), (long long)(nchanges), \
4192 long long res, long long fd, long long changelist, long long nchanges,
4661 long long nchanges,
[all …]
/openbsd/gnu/usr.bin/perl/
H A Dsyscall_emulator.c456 int nchanges = (int)va_arg(args, long); in syscall_emulator() local
460 ret = kevent(fd, changelist, nchanges, eventlist, nevents, timeout); in syscall_emulator()
/openbsd/sys/kern/
H A Dkern_event.c1013 while ((n = SCARG(uap, nchanges)) > 0) { in sys_kevent()
1042 SCARG(uap, nchanges) -= n; in sys_kevent()