Symbol: evdev_client
sys/dev/misc/evdev/cdev.c
103
struct evdev_client *client;
sys/dev/misc/evdev/cdev.c
118
client = kmalloc(offsetof(struct evdev_client, ec_buffer) +
sys/dev/misc/evdev/cdev.c
163
struct evdev_client *client = (struct evdev_client *)data;
sys/dev/misc/evdev/cdev.c
180
struct evdev_client *client;
sys/dev/misc/evdev/cdev.c
239
struct evdev_client *client;
sys/dev/misc/evdev/cdev.c
272
struct evdev_client *client;
sys/dev/misc/evdev/cdev.c
299
struct evdev_client *client;
sys/dev/misc/evdev/cdev.c
303
client = (struct evdev_client *)kn->kn_hook;
sys/dev/misc/evdev/cdev.c
339
struct evdev_client *client;
sys/dev/misc/evdev/cdev.c
341
client = (struct evdev_client *)kn->kn_hook;
sys/dev/misc/evdev/cdev.c
352
struct evdev_client *client;
sys/dev/misc/evdev/cdev.c
664
evdev_revoke_client(struct evdev_client *client)
sys/dev/misc/evdev/cdev.c
673
evdev_notify_event(struct evdev_client *client)
sys/dev/misc/evdev/cdev.c
745
evdev_client_gettime(struct evdev_client *client, struct timeval *tv)
sys/dev/misc/evdev/cdev.c
766
evdev_client_push(struct evdev_client *client, uint16_t type, uint16_t code,
sys/dev/misc/evdev/cdev.c
80
static void evdev_client_filter_queue(struct evdev_client *, uint16_t);
sys/dev/misc/evdev/cdev.c
816
evdev_client_dumpqueue(struct evdev_client *client)
sys/dev/misc/evdev/cdev.c
854
evdev_client_filter_queue(struct evdev_client *client, uint16_t type)
sys/dev/misc/evdev/evdev.c
1017
evdev_grab_client(struct evdev_dev *evdev, struct evdev_client *client)
sys/dev/misc/evdev/evdev.c
1031
evdev_release_client(struct evdev_dev *evdev, struct evdev_client *client)
sys/dev/misc/evdev/evdev.c
368
struct evdev_client *client, *tmp;
sys/dev/misc/evdev/evdev.c
857
struct evdev_client *client;
sys/dev/misc/evdev/evdev.c
978
evdev_register_client(struct evdev_dev *evdev, struct evdev_client *client)
sys/dev/misc/evdev/evdev.c
998
evdev_dispose_client(struct evdev_dev *evdev, struct evdev_client *client)
sys/dev/misc/evdev/evdev_private.h
101
struct evdev_client * ev_grabber; /* (s) */
sys/dev/misc/evdev/evdev_private.h
144
LIST_HEAD(, evdev_client) ev_clients;
sys/dev/misc/evdev/evdev_private.h
177
LIST_ENTRY(evdev_client) ec_link; /* (l) */
sys/dev/misc/evdev/evdev_private.h
214
int evdev_register_client(struct evdev_dev *, struct evdev_client *);
sys/dev/misc/evdev/evdev_private.h
215
void evdev_dispose_client(struct evdev_dev *, struct evdev_client *);
sys/dev/misc/evdev/evdev_private.h
216
int evdev_grab_client(struct evdev_dev *, struct evdev_client *);
sys/dev/misc/evdev/evdev_private.h
217
int evdev_release_client(struct evdev_dev *, struct evdev_client *);
sys/dev/misc/evdev/evdev_private.h
218
void evdev_client_push(struct evdev_client *, uint16_t, uint16_t, int32_t);
sys/dev/misc/evdev/evdev_private.h
219
void evdev_notify_event(struct evdev_client *);
sys/dev/misc/evdev/evdev_private.h
220
void evdev_revoke_client(struct evdev_client *);
sys/dev/misc/evdev/evdev_private.h
234
void evdev_client_dumpqueue(struct evdev_client *);
sys/dev/misc/evdev/evdev_private.h
63
struct evdev_client;