Lines Matching defs:nchanges
1121 int nchanges;
1139 .nchanges = uap->nchanges,
1169 uap->nchanges, k_ops->kevent_size);
1172 error = kern_kevent(td, uap->fd, uap->nchanges, uap->nevents,
1289 .nchanges = uap->nchanges,
1300 kern_kevent(struct thread *td, int fd, int nchanges, int nevents,
1308 if (nchanges > 0)
1316 error = kern_kevent_fp(td, fp, nchanges, nevents, k_ops, timeout);
1323 kqueue_kevent(struct kqueue *kq, struct thread *td, int nchanges, int nevents,
1330 if (nchanges < 0)
1334 while (nchanges > 0) {
1335 n = nchanges > KQ_NEVENTS ? KQ_NEVENTS : nchanges;
1356 nchanges -= n;
1367 kern_kevent_fp(struct thread *td, struct file *fp, int nchanges, int nevents,
1376 error = kqueue_kevent(kq, td, nchanges, nevents, k_ops, timeout);