| /src/lib/libc/compat/sys/ |
| compat_kevent.c | 51 __warn_references(kevent, 52 "warning: reference to compatibility kevent(); include <sys/event.h> to generate correct reference") 54 "warning: reference to compatibility __kevent50(); use kevent()") 57 kevent(int kq, const struct kevent100 *changelist, size_t nchanges, function 74 struct kevent *changelist; 75 struct kevent *eventlist;
|
| /src/sys/dev/hpc/ |
| btnmgr.c | 132 int kevent; member in struct:__anon2572 136 /* id kevent keycode name */ 235 if (button_config[id].kevent) {
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/engine/ |
| fifo.h | 55 struct nvkm_event kevent; /* channel killed */ member in struct:nvkm_fifo
|
| /src/tests/lib/libc/gen/ |
| t_sleep.c | 69 * The 'kevent' test needs the ALARM to be set on a different pass 150 struct kevent ktimer; 151 struct kevent kresult; 168 fprintf(stderr, "kevent: set EVFILT_TIMER tmo=%d\n", tmo); 171 fprintf(stderr, "kevent: wait up to %lld.%09ld sec\n", 173 rtc = kevent(kq, &ktimer, 1, &kresult, 1, delay); 175 fprintf(stderr, "kevent returned rtc=%d\n", rtc); 180 ATF_REQUIRE_MSG(kerrno == EINTR, "kevent: %s", 187 "kevent: KEVNT_TIMEOUT did not cause EVFILT_TIMER event"); 248 ATF_TC(kevent); variable [all...] |
| /src/sys/compat/linux/common/ |
| linux_inotify.c | 126 uint32_t kevent; member in struct:inotify_kevent_mask_pair 129 static int inotify_kev_fetch_changes(void *, const struct kevent *, 130 struct kevent *, size_t, int); 190 { .inotify = LINUX_IN_ATTRIB, .kevent = NOTE_ATTRIB, }, 191 { .inotify = LINUX_IN_CLOSE_NOWRITE, .kevent = NOTE_CLOSE, }, 192 { .inotify = LINUX_IN_OPEN, .kevent = NOTE_OPEN, }, 193 { .inotify = LINUX_IN_MOVE_SELF, .kevent = NOTE_RENAME, }, 199 { .inotify = LINUX_IN_ACCESS, .kevent = NOTE_READ, }, 200 { .inotify = LINUX_IN_ATTRIB, .kevent = NOTE_ATTRIB|NOTE_LINK, }, 201 { .inotify = LINUX_IN_CLOSE_WRITE, .kevent = NOTE_CLOSE_WRITE, } [all...] |
| /src/sys/sys/ |
| event.h | 66 struct kevent { struct 77 _EV_SET(struct kevent *_kevp, uintptr_t _ident, uint32_t _filter, 218 * argument set to EVENT_REGISTER during a kevent() system call. It is also 236 int (*f_touch) (struct knote *, struct kevent *, long); 257 struct kevent kn_kevent; /* (see below for locking) */ 310 typedef int (*kevent_fetch_changes_t)(void *, const struct kevent *, 311 struct kevent *, size_t, int); 312 typedef int (*kevent_put_events_t)(void *, struct kevent *, struct kevent *, 323 int kevent_fetch_changes(void *, const struct kevent *, struct kevent * [all...] |