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;
100 struct {
106 } wheel;
108 struct {
119 } tablet_mode;
123 unsigned long hw_key_mask[NLONGS(KEY_CNT)];
124 unsigned long last_hw_key_mask[NLONGS(KEY_CNT)];
126 enum evdev_event_type pending_event;
128 struct {
135 } debounce;
137 struct {
162 static inline struct fallback_dispatch* argument
163 fallback_dispatch(struct evdev_dispatch *dispatch) in fallback_dispatch() function