Searched refs:kevp (Results 1 - 5 of 5) sorted by relevance

/freebsd-10-stable/tests/sys/kqueue/libkqueue/
H A Dproc.c179 struct kevent *kevp; local
181 kevp = kevent_get_timeout(kqfd, 5);
182 if (kevp == NULL) {
185 printf(" -- Received kevent: %s\n", kevent_to_str(kevp));
187 if ((kevp->fflags & NOTE_CHILD) && (kevp->fflags & NOTE_EXIT)) {
188 errx(1, "NOTE_CHILD and NOTE_EXIT in same kevent: %s", kevent_to_str(kevp));
191 if (kevp->fflags & NOTE_CHILD) {
192 if (kevp->data == pid) {
195 gchild_pid = kevp
[all...]
/freebsd-10-stable/sys/sys/
H A Devent.h59 /* The definition of the local variable kevp could possibly conflict
63 struct kevent *kevp = (kevp_); \
64 (kevp)->ident = (a); \
65 (kevp)->filter = (b); \
66 (kevp)->flags = (c); \
67 (kevp)->fflags = (d); \
68 (kevp)->data = (e); \
69 (kevp)->udata = (f); \
262 int (*k_copyout)(void *arg, struct kevent *kevp, int count);
263 int (*k_copyin)(void *arg, struct kevent *kevp, in
[all...]
/freebsd-10-stable/sys/kern/
H A Dkern_event.c93 static int kevent_copyout(void *arg, struct kevent *kevp, int count);
94 static int kevent_copyin(void *arg, struct kevent *kevp, int count);
909 kevent_copyout(void *arg, struct kevent *kevp, int count) argument
917 error = copyout(kevp, uap->eventlist, count * sizeof *kevp);
927 kevent_copyin(void *arg, struct kevent *kevp, int count) argument
935 error = copyin(uap->changelist, kevp, count * sizeof *kevp);
969 struct kevent *kevp, *changes; local
986 kevp
1491 struct kevent *kevp; local
[all...]
/freebsd-10-stable/sys/compat/linux/
H A Dlinux_event.c102 static int epoll_kev_copyout(void *arg, struct kevent *kevp, int count);
103 static int epoll_kev_copyin(void *arg, struct kevent *kevp, int count);
328 epoll_kev_copyout(void *arg, struct kevent *kevp, int count) argument
346 kevent_to_epoll(&kevp[i], &eep[i]);
348 fd = kevp[i].ident;
373 epoll_kev_copyin(void *arg, struct kevent *kevp, int count) argument
379 memcpy(kevp, args->changelist, count * sizeof(*kevp));
/freebsd-10-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c130 static int freebsd32_kevent_copyout(void *arg, struct kevent *kevp, int count);
131 static int freebsd32_kevent_copyin(void *arg, struct kevent *kevp, int count);
718 freebsd32_kevent_copyout(void *arg, struct kevent *kevp, int count) argument
728 CP(kevp[i], ks32[i], ident);
729 CP(kevp[i], ks32[i], filter);
730 CP(kevp[i], ks32[i], flags);
731 CP(kevp[i], ks32[i], fflags);
732 CP(kevp[i], ks32[i], data);
733 PTROUT_CP(kevp[i], ks32[i], udata);
745 freebsd32_kevent_copyin(void *arg, struct kevent *kevp, in argument
[all...]

Completed in 112 milliseconds