Searched refs:nchanges (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/lib/libc/sys/
H A Dkevent.c45 kevent(int kq, const struct kevent *changelist, int nchanges, argument
51 __libc_interposing[INTERPOS_kevent])(kq, changelist, nchanges,
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Ddevpoll.c61 int nchanges; member in struct:devpollop
92 sizeof(struct pollfd) * devpollop->nchanges, 0) == -1)
95 devpollop->nchanges = 0;
103 if (devpollop->nchanges >= devpollop->nevents) {
112 pfd = &devpollop->changes[devpollop->nchanges++];
175 if (devpollop->nchanges)
/freebsd-11-stable/contrib/pf/libevent/
H A Dkqueue.c66 int nchanges; member in struct:kqop
162 if (kqop->nchanges == nevents) {
192 memcpy(&kqop->changes[kqop->nchanges++], kev, sizeof(struct kevent));
220 res = kevent(kqop->kq, changes, kqop->nchanges,
222 kqop->nchanges = 0;
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_syscalls.c383 __thr_kevent(int kq, const struct kevent *changelist, int nchanges, argument
393 return (__sys_kevent(kq, changelist, nchanges, eventlist,
398 ret = __sys_kevent(kq, changelist, nchanges, eventlist, nevents,
400 _thr_cancel_leave(curthread, ret == -1 && nchanges == 0);
/freebsd-11-stable/sys/kern/
H A Dkern_event.c963 int nchanges; member in struct:kevent_args
994 uap->nchanges, sizeof(struct kevent));
997 error = kern_kevent(td, uap->fd, uap->nchanges, uap->nevents,
1046 kern_kevent(struct thread *td, int fd, int nchanges, int nevents, argument
1054 if (nchanges > 0)
1062 error = kern_kevent_fp(td, fp, nchanges, nevents, k_ops, timeout);
1069 kqueue_kevent(struct kqueue *kq, struct thread *td, int nchanges, int nevents, argument
1077 while (nchanges > 0) {
1078 n = nchanges > KQ_NEVENTS ? KQ_NEVENTS : nchanges;
1110 kern_kevent_fp(struct thread *td, struct file *fp, int nchanges, int nevents, struct kevent_copyops *k_ops, const struct timespec *timeout) argument
[all...]
H A Dsystrace_args.c1920 iarg[2] = p->nchanges; /* int */
/freebsd-11-stable/sys/sys/
H A Devent.h319 int kevent(int kq, const struct kevent *changelist, int nchanges,
H A Dsyscallsubr.h142 int kern_kevent(struct thread *td, int fd, int nchanges, int nevents,
146 int kern_kevent_fp(struct thread *td, struct file *fp, int nchanges,
H A Dsysproto.h1017 char nchanges_l_[PADL_(int)]; int nchanges; char nchanges_r_[PADR_(int)]; member in struct:kevent_args
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_event.c455 int nchanges = 0; local
489 &kev_flags, kev, &nchanges);
528 error = kern_kevent_fp(td, epfp, nchanges, 0, &k_ops, NULL);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dnetbsd_syscall_hooks.h1773 #define __sanitizer_syscall_pre_compat_50_kevent(fd, changelist, nchanges, \
1776 (long long)(fd), (long long)(changelist), (long long)(nchanges), \
1779 res, fd, changelist, nchanges, eventlist, nevents, timeout) \
1781 res, (long long)(fd), (long long)(changelist), (long long)(nchanges), \
2379 #define __sanitizer_syscall_pre___kevent50(fd, changelist, nchanges, \
2382 (long long)(fd), (long long)(changelist), (long long)(nchanges), \
2384 #define __sanitizer_syscall_post___kevent50(res, fd, changelist, nchanges, \
2387 res, (long long)(fd), (long long)(changelist), (long long)(nchanges), \
4065 long long fd, long long changelist, long long nchanges, long long eventlist,
4068 long long res, long long fd, long long changelist, long long nchanges,
[all...]
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c684 uap->nchanges, sizeof(struct kevent32));
686 error = kern_kevent(td, uap->fd, uap->nchanges, uap->nevents,
H A Dfreebsd32_proto.h322 char nchanges_l_[PADL_(int)]; int nchanges; char nchanges_r_[PADR_(int)]; member in struct:freebsd32_kevent_args
H A Dfreebsd32_systrace_args.c1875 iarg[2] = p->nchanges; /* int */

Completed in 223 milliseconds