Lines Matching refs:EV_KEY

447 	input_set_capability(input, EV_KEY, BTN_TR2);  in steam_register()
448 input_set_capability(input, EV_KEY, BTN_TL2); in steam_register()
449 input_set_capability(input, EV_KEY, BTN_TR); in steam_register()
450 input_set_capability(input, EV_KEY, BTN_TL); in steam_register()
451 input_set_capability(input, EV_KEY, BTN_Y); in steam_register()
452 input_set_capability(input, EV_KEY, BTN_B); in steam_register()
453 input_set_capability(input, EV_KEY, BTN_X); in steam_register()
454 input_set_capability(input, EV_KEY, BTN_A); in steam_register()
455 input_set_capability(input, EV_KEY, BTN_DPAD_UP); in steam_register()
456 input_set_capability(input, EV_KEY, BTN_DPAD_RIGHT); in steam_register()
457 input_set_capability(input, EV_KEY, BTN_DPAD_LEFT); in steam_register()
458 input_set_capability(input, EV_KEY, BTN_DPAD_DOWN); in steam_register()
459 input_set_capability(input, EV_KEY, BTN_SELECT); in steam_register()
460 input_set_capability(input, EV_KEY, BTN_MODE); in steam_register()
461 input_set_capability(input, EV_KEY, BTN_START); in steam_register()
462 input_set_capability(input, EV_KEY, BTN_GEAR_DOWN); in steam_register()
463 input_set_capability(input, EV_KEY, BTN_GEAR_UP); in steam_register()
464 input_set_capability(input, EV_KEY, BTN_THUMBR); in steam_register()
465 input_set_capability(input, EV_KEY, BTN_THUMBL); in steam_register()
466 input_set_capability(input, EV_KEY, BTN_THUMB); in steam_register()
467 input_set_capability(input, EV_KEY, BTN_THUMB2); in steam_register()
927 input_event(input, EV_KEY, BTN_TR2, !!(b8 & BIT(0))); in steam_do_input_event()
928 input_event(input, EV_KEY, BTN_TL2, !!(b8 & BIT(1))); in steam_do_input_event()
929 input_event(input, EV_KEY, BTN_TR, !!(b8 & BIT(2))); in steam_do_input_event()
930 input_event(input, EV_KEY, BTN_TL, !!(b8 & BIT(3))); in steam_do_input_event()
931 input_event(input, EV_KEY, BTN_Y, !!(b8 & BIT(4))); in steam_do_input_event()
932 input_event(input, EV_KEY, BTN_B, !!(b8 & BIT(5))); in steam_do_input_event()
933 input_event(input, EV_KEY, BTN_X, !!(b8 & BIT(6))); in steam_do_input_event()
934 input_event(input, EV_KEY, BTN_A, !!(b8 & BIT(7))); in steam_do_input_event()
935 input_event(input, EV_KEY, BTN_SELECT, !!(b9 & BIT(4))); in steam_do_input_event()
936 input_event(input, EV_KEY, BTN_MODE, !!(b9 & BIT(5))); in steam_do_input_event()
937 input_event(input, EV_KEY, BTN_START, !!(b9 & BIT(6))); in steam_do_input_event()
938 input_event(input, EV_KEY, BTN_GEAR_DOWN, !!(b9 & BIT(7))); in steam_do_input_event()
939 input_event(input, EV_KEY, BTN_GEAR_UP, !!(b10 & BIT(0))); in steam_do_input_event()
940 input_event(input, EV_KEY, BTN_THUMBR, !!(b10 & BIT(2))); in steam_do_input_event()
941 input_event(input, EV_KEY, BTN_THUMBL, !!(b10 & BIT(6))); in steam_do_input_event()
942 input_event(input, EV_KEY, BTN_THUMB, lpad_touched || lpad_and_joy); in steam_do_input_event()
943 input_event(input, EV_KEY, BTN_THUMB2, !!(b10 & BIT(4))); in steam_do_input_event()
944 input_event(input, EV_KEY, BTN_DPAD_UP, !!(b9 & BIT(0))); in steam_do_input_event()
945 input_event(input, EV_KEY, BTN_DPAD_RIGHT, !!(b9 & BIT(1))); in steam_do_input_event()
946 input_event(input, EV_KEY, BTN_DPAD_LEFT, !!(b9 & BIT(2))); in steam_do_input_event()
947 input_event(input, EV_KEY, BTN_DPAD_DOWN, !!(b9 & BIT(3))); in steam_do_input_event()