Searched refs:SYN_DROPPED (Results 1 - 10 of 10) sorted by relevance
/third_party/glfw/src/ |
H A D | linux_joystick.c | 43 #ifndef SYN_DROPPED // < v2.6.39 kernel headers 45 #define SYN_DROPPED 3 macro 405 if (e.code == SYN_DROPPED) in _glfwPollJoystickLinux()
|
/third_party/libevdev/test/ |
H A D | test-libevdev-events.c | 121 EV_SYN, SYN_DROPPED, in START_TEST() 128 we can't get SYN_DROPPED through uinput, so we push two events down in START_TEST() 129 uinput, and process those. Then write a SYN_DROPPED on a pipe, in START_TEST() 131 that when we do read off the SYN_DROPPED we have the fd back on in START_TEST() 149 ev.code = SYN_DROPPED; in START_TEST() 156 assert_event(&ev, EV_SYN, SYN_DROPPED, 0); in START_TEST() 307 EV_SYN, SYN_DROPPED, in START_TEST() 363 EV_SYN, SYN_DROPPED, in START_TEST() 571 EV_SYN, SYN_DROPPED, in START_TEST() 617 EV_SYN, SYN_DROPPED, in START_TEST() [all...] |
H A D | test-event-names.c | 183 ck_assert_str_eq(libevdev_event_code_get_name(EV_SYN, SYN_DROPPED), "SYN_DROPPED"); in START_TEST() 283 ck_assert_int_eq(libevdev_event_is_code(&ev, EV_SYN, SYN_DROPPED), 0); in START_TEST()
|
H A D | test-event-codes.c | 87 ck_assert_int_eq(libevdev_event_code_from_name(EV_SYN, "SYN_DROPPED"), SYN_DROPPED); in START_TEST() 111 ck_assert_int_eq(libevdev_event_code_from_code_name("SYN_DROPPED"), SYN_DROPPED); in START_TEST()
|
/third_party/FreeBSD/sys/dev/evdev/ |
H A D | input-event-codes.h | 72 #define SYN_DROPPED 3 macro
|
/third_party/libinput/include/linux/linux/ |
H A D | input-event-codes.h | 60 #define SYN_DROPPED 3 macro
|
/third_party/libinput/include/linux/freebsd/ |
H A D | input-event-codes.h | 60 #define SYN_DROPPED 3 macro
|
/third_party/libevdev/include/linux/linux/ |
H A D | input-event-codes.h | 60 #define SYN_DROPPED 3 macro
|
/third_party/libevdev/include/ |
H A D | event-names.h | 779 [SYN_DROPPED] = "SYN_DROPPED", 1634 { .name = "SYN_DROPPED", .value = SYN_DROPPED },
|
/third_party/libevdev/libevdev/ |
H A D | libevdev.c | 31 /* Keeps a record of touches during SYN_DROPPED */ 34 TOUCH_STARTED, /* Started during SYN_DROPPED */ 35 TOUCH_STOPPED, /* Stopped during SYN_DROPPED */ 77 may get during SYN_DROPPED too. Use double that, just so we have in init_event_queue() 923 * either terminated during SYN_DROPPED or changed their tracking in sync_state() 1163 /* Always read in some more events. Best case this smoothes over a potential SYN_DROPPED, in libevdev_next_event() 1164 worst case we don't read fast enough and end up with SYN_DROPPED anyway. in libevdev_next_event() 1194 if (ev->type == EV_SYN && ev->code == SYN_DROPPED) { in libevdev_next_event()
|
Completed in 19 milliseconds