Lines Matching defs:evdev_client
40 struct evdev_client { struct
41 unsigned int head;
42 unsigned int tail;
43 unsigned int packet_head; /* [future] position of the first element of next packet */
44 spinlock_t buffer_lock; /* protects access to buffer, head and tail */
45 wait_queue_head_t wait;
46 struct fasync_struct *fasync;
47 struct evdev *evdev;
48 struct list_head node;
49 enum input_clock_type clk_type;
50 bool revoked;
51 unsigned long *evmasks[EV_CNT];
75 static bool __evdev_is_filtered(struct evdev_client *client, in __evdev_is_filtered() argument