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

/freebsd-10.1-release/sys/sys/
H A Devent.h48 struct kevent *kevp = (kevp_); \
49 (kevp)->ident = (a); \
50 (kevp)->filter = (b); \
51 (kevp)->flags = (c); \
52 (kevp)->fflags = (d); \
53 (kevp)->data = (e); \
54 (kevp)->udata = (f); \
231 int (*k_copyout)(void *arg, struct kevent *kevp, int count);
232 int (*k_copyin)(void *arg, struct kevent *kevp, int count);
/freebsd-10.1-release/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);
795 kevent_copyout(void *arg, struct kevent *kevp, int count) argument
803 error = copyout(kevp, uap->eventlist, count * sizeof *kevp);
813 kevent_copyin(void *arg, struct kevent *kevp, int count) argument
821 error = copyin(uap->changelist, kevp, count * sizeof *kevp);
832 struct kevent *kevp, *changes; local
860 kevp
1353 struct kevent *kevp; local
[all...]
/freebsd-10.1-release/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);
706 freebsd32_kevent_copyout(void *arg, struct kevent *kevp, int count) argument
716 CP(kevp[i], ks32[i], ident);
717 CP(kevp[i], ks32[i], filter);
718 CP(kevp[i], ks32[i], flags);
719 CP(kevp[i], ks32[i], fflags);
720 CP(kevp[i], ks32[i], data);
721 PTROUT_CP(kevp[i], ks32[i], udata);
733 freebsd32_kevent_copyin(void *arg, struct kevent *kevp, in argument
[all...]

Completed in 157 milliseconds