Lines Matching defs:evdev_dev
108 struct evdev_dev struct
110 char ev_name[NAMELEN];
111 char ev_shortname[NAMELEN];
112 char ev_serial[NAMELEN];
113 struct cdev * ev_cdev;
114 int ev_unit;
115 enum evdev_lock_type ev_lock_type;
116 struct mtx * ev_state_lock; /* State lock */
117 struct mtx ev_mtx; /* Internal state lock */
118 struct sx ev_list_lock; /* Client list lock */
119 struct input_id ev_id;
120 struct evdev_client * ev_grabber; /* (s) */
121 size_t ev_report_size;
133 struct input_absinfo * ev_absinfo; /* (s) */
137 int ev_rep[REP_CNT]; /* (s) */
138 struct callout ev_rep_callout; /* (s) */
139 uint16_t ev_rep_key; /* (s) */
166 LIST_ENTRY(evdev_dev) ev_link; argument