Lines Matching defs:fallback_dispatch
71 struct fallback_dispatch { struct
72 struct evdev_dispatch base;
73 struct evdev_device *device;
75 struct libinput_device_config_calibration calibration;
77 struct {
82 } rotation;
84 struct {
87 } abs;
89 struct {
96 } mt;
98 struct device_coords rel;
99 struct device_coords wheel;
101 struct {
112 } tablet_mode;
116 unsigned long hw_key_mask[NLONGS(KEY_CNT)];
117 unsigned long last_hw_key_mask[NLONGS(KEY_CNT)];
119 enum evdev_event_type pending_event;
121 struct {
128 } debounce;
130 struct {
155 static inline struct fallback_dispatch* argument
156 fallback_dispatch(struct evdev_dispatch *dispatch) in fallback_dispatch() function