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