Lines Matching defs:fallback_dispatch
85 struct fallback_dispatch { struct
86 struct evdev_dispatch base;
87 struct evdev_device *device;
89 struct libinput_device_config_calibration calibration;
91 struct {
95 } rotation;
97 struct {
100 } abs;
102 struct {
109 } mt;
111 struct device_coords rel;
113 struct {
121 } wheel;
123 struct {
134 } tablet_mode;
138 unsigned long hw_key_mask[NLONGS(KEY_CNT)];
139 unsigned long last_hw_key_mask[NLONGS(KEY_CNT)];
141 enum evdev_event_type pending_event;
143 struct {
150 } debounce;
152 struct {
177 static inline struct fallback_dispatch* argument
178 fallback_dispatch(struct evdev_dispatch *dispatch) in fallback_dispatch() function