/src/sys/sys/ |
select.h | 50 struct knote; 55 void selrecord_knote(struct selinfo *, struct knote *); 56 bool selremove_knote(struct selinfo *, struct knote *);
|
entropy.h | 43 struct knote; 59 int entropy_kqfilter(struct knote *);
|
event.h | 134 #define NOTE_SUBMIT 0x01000000U /* initial knote submission */ 185 struct knote; 186 SLIST_HEAD(klist, knote); 207 #define KNOTE(list, hint) if (!SLIST_EMPTY(list)) knote(list, hint) 230 int (*f_attach) (struct knote *); 231 /* called when knote is ADDed */ 232 void (*f_detach) (struct knote *); 233 /* called when knote is DELETEd */ 234 int (*f_event) (struct knote *, long) 252 struct knote { struct [all...] |
eventvar.h | 49 TAILQ_HEAD(kqlist, knote) kq_head; /* list of pending event */
|
file.h | 78 struct knote; 96 int (*fo_kqfilter) (struct file *, struct knote *); 227 int fnullop_kqfilter(struct file *, struct knote *);
|
conf.h | 51 struct knote; 100 int (*d_kqfilter)(dev_t, struct knote *); 133 typedef int dev_kqfilter_t(dev_t, struct knote *); typedef in typeref:typename:int dev_kqfilter_t (dev_t,struct *) 264 int seltrue_kqfilter(dev_t, struct knote *);
|
/src/sys/arch/x68k/dev/ |
event_var.h | 70 int ev_kqfilter(struct evvar *, struct knote *);
|
event.c | 187 filt_evrdetach(struct knote *kn) 197 filt_evread(struct knote *kn, long hint) 227 ev_kqfilter(struct evvar *ev, struct knote *kn)
|
/src/sys/dev/ir/ |
irframevar.h | 38 int (*im_kqfilter)(void *, struct knote *);
|
/src/sys/arch/amiga/dev/ |
event_var.h | 80 int ev_kqfilter(struct evvar *, struct knote *);
|
event.c | 164 filt_evrdetach(struct knote *kn) 175 filt_evread(struct knote *kn, long hint) 201 ev_kqfilter(struct evvar *ev, struct knote *kn)
|
/src/sys/arch/atari/dev/ |
event_var.h | 83 int ev_kqfilter(struct evvar *, struct knote *);
|
event.c | 164 filt_evrdetach(struct knote *kn) 175 filt_evread(struct knote *kn, long hint) 201 ev_kqfilter(struct evvar *ev, struct knote *kn)
|
/src/sys/dev/sun/ |
event_var.h | 82 int ev_kqfilter(struct evvar *, struct knote *);
|
fbvar.h | 62 int (*fbd_kqfilter)(dev_t, struct knote *);
|
event.c | 170 filt_evrdetach(struct knote *kn) 181 filt_evread(struct knote *kn, long hint) 207 ev_kqfilter(struct evvar *ev, struct knote *kn)
|
/src/sys/dev/wscons/ |
wseventvar.h | 97 int wsevent_kqfilter(struct wseventvar *, struct knote *);
|
/src/sys/kern/ |
kern_event.c | 94 static int kqueue_kqfilter(file_t *, struct knote *); 102 static void knote_detach(struct knote *, filedesc_t *fdp, bool); 103 static void knote_enqueue(struct knote *); 104 static void knote_activate(struct knote *); 105 static void knote_activate_locked(struct knote *); 106 static void knote_deactivate_locked(struct knote *); 108 static void filt_kqdetach(struct knote *); 109 static int filt_kqueue(struct knote *, long hint); 110 static int filt_procattach(struct knote *); 111 static void filt_procdetach(struct knote *); 2770 knote(struct klist *list, long hint) function in typeref:typename:void [all...] |
sys_eventfd.c | 405 eventfd_filt_read_detach(struct knote * const kn) 416 eventfd_filt_read(struct knote * const kn, long const hint) 444 eventfd_filt_write_detach(struct knote * const kn) 455 eventfd_filt_write(struct knote * const kn, long const hint) 483 eventfd_fop_kqfilter(file_t * const fp, struct knote * const kn)
|
/src/sys/arch/sun3/dev/ |
fbvar.h | 43 #include <sys/event.h> /* for struct knote */ 78 int (*fbd_kqfilter)(dev_t, struct knote *);
|
/src/sys/rump/include/rump/ |
rumpvnode_if.h | 47 struct knote; 77 int RUMP_VOP_KQFILTER(struct vnode *, struct knote *);
|
/src/sys/nfs/ |
nfs_kq.c | 110 * isn't really important, neither speed of attach and detach of knote. 189 filt_nfsdetach(struct knote *kn) 220 filt_nfsread(struct knote *kn, long hint) 227 * the knote for deletion. 248 filt_nfsvnode(struct knote *kn, long hint) 296 struct knote *a_kn; 299 struct knote *kn;
|
/src/sys/arch/landisk/dev/ |
button.c | 289 filt_btn_rdetach(struct knote *kn) 298 filt_btn_read(struct knote *kn, long hint) 326 btnkqfilter(dev_t dev, struct knote *kn)
|
/src/sys/dev/sysmon/ |
sysmonvar.h | 51 struct knote; 304 int sysmonkqfilter_power(dev_t, struct knote *); 327 int (*so_filter)(dev_t, struct knote*);
|
/src/sys/external/bsd/drm2/linux/ |
linux_sync_file.c | 134 sync_file_kqfilter(struct file *fp, struct knote *kn) 152 filt_sync_file_detach(struct knote *kn) 162 filt_sync_file_event(struct knote *kn, long hint)
|