Lines Matching refs:EV_KEY

509 	input_set_capability(input, EV_KEY, BTN_TR2);  in steam_input_register()
510 input_set_capability(input, EV_KEY, BTN_TL2); in steam_input_register()
511 input_set_capability(input, EV_KEY, BTN_TR); in steam_input_register()
512 input_set_capability(input, EV_KEY, BTN_TL); in steam_input_register()
513 input_set_capability(input, EV_KEY, BTN_Y); in steam_input_register()
514 input_set_capability(input, EV_KEY, BTN_B); in steam_input_register()
515 input_set_capability(input, EV_KEY, BTN_X); in steam_input_register()
516 input_set_capability(input, EV_KEY, BTN_A); in steam_input_register()
517 input_set_capability(input, EV_KEY, BTN_DPAD_UP); in steam_input_register()
518 input_set_capability(input, EV_KEY, BTN_DPAD_RIGHT); in steam_input_register()
519 input_set_capability(input, EV_KEY, BTN_DPAD_LEFT); in steam_input_register()
520 input_set_capability(input, EV_KEY, BTN_DPAD_DOWN); in steam_input_register()
521 input_set_capability(input, EV_KEY, BTN_SELECT); in steam_input_register()
522 input_set_capability(input, EV_KEY, BTN_MODE); in steam_input_register()
523 input_set_capability(input, EV_KEY, BTN_START); in steam_input_register()
524 input_set_capability(input, EV_KEY, BTN_THUMBR); in steam_input_register()
525 input_set_capability(input, EV_KEY, BTN_THUMBL); in steam_input_register()
526 input_set_capability(input, EV_KEY, BTN_THUMB); in steam_input_register()
527 input_set_capability(input, EV_KEY, BTN_THUMB2); in steam_input_register()
529 input_set_capability(input, EV_KEY, BTN_BASE); in steam_input_register()
530 input_set_capability(input, EV_KEY, BTN_TRIGGER_HAPPY1); in steam_input_register()
531 input_set_capability(input, EV_KEY, BTN_TRIGGER_HAPPY2); in steam_input_register()
532 input_set_capability(input, EV_KEY, BTN_TRIGGER_HAPPY3); in steam_input_register()
533 input_set_capability(input, EV_KEY, BTN_TRIGGER_HAPPY4); in steam_input_register()
535 input_set_capability(input, EV_KEY, BTN_GEAR_DOWN); in steam_input_register()
536 input_set_capability(input, EV_KEY, BTN_GEAR_UP); in steam_input_register()
1121 input_event(input, EV_KEY, BTN_TR2, !!(b8 & BIT(0))); in steam_do_input_event()
1122 input_event(input, EV_KEY, BTN_TL2, !!(b8 & BIT(1))); in steam_do_input_event()
1123 input_event(input, EV_KEY, BTN_TR, !!(b8 & BIT(2))); in steam_do_input_event()
1124 input_event(input, EV_KEY, BTN_TL, !!(b8 & BIT(3))); in steam_do_input_event()
1125 input_event(input, EV_KEY, BTN_Y, !!(b8 & BIT(4))); in steam_do_input_event()
1126 input_event(input, EV_KEY, BTN_B, !!(b8 & BIT(5))); in steam_do_input_event()
1127 input_event(input, EV_KEY, BTN_X, !!(b8 & BIT(6))); in steam_do_input_event()
1128 input_event(input, EV_KEY, BTN_A, !!(b8 & BIT(7))); in steam_do_input_event()
1129 input_event(input, EV_KEY, BTN_SELECT, !!(b9 & BIT(4))); in steam_do_input_event()
1130 input_event(input, EV_KEY, BTN_MODE, !!(b9 & BIT(5))); in steam_do_input_event()
1131 input_event(input, EV_KEY, BTN_START, !!(b9 & BIT(6))); in steam_do_input_event()
1132 input_event(input, EV_KEY, BTN_GEAR_DOWN, !!(b9 & BIT(7))); in steam_do_input_event()
1133 input_event(input, EV_KEY, BTN_GEAR_UP, !!(b10 & BIT(0))); in steam_do_input_event()
1134 input_event(input, EV_KEY, BTN_THUMBR, !!(b10 & BIT(2))); in steam_do_input_event()
1135 input_event(input, EV_KEY, BTN_THUMBL, !!(b10 & BIT(6))); in steam_do_input_event()
1136 input_event(input, EV_KEY, BTN_THUMB, lpad_touched || lpad_and_joy); in steam_do_input_event()
1137 input_event(input, EV_KEY, BTN_THUMB2, !!(b10 & BIT(4))); in steam_do_input_event()
1138 input_event(input, EV_KEY, BTN_DPAD_UP, !!(b9 & BIT(0))); in steam_do_input_event()
1139 input_event(input, EV_KEY, BTN_DPAD_RIGHT, !!(b9 & BIT(1))); in steam_do_input_event()
1140 input_event(input, EV_KEY, BTN_DPAD_LEFT, !!(b9 & BIT(2))); in steam_do_input_event()
1141 input_event(input, EV_KEY, BTN_DPAD_DOWN, !!(b9 & BIT(3))); in steam_do_input_event()
1284 input_event(input, EV_KEY, BTN_TR2, !!(b8 & BIT(0))); in steam_do_deck_input_event()
1285 input_event(input, EV_KEY, BTN_TL2, !!(b8 & BIT(1))); in steam_do_deck_input_event()
1286 input_event(input, EV_KEY, BTN_TR, !!(b8 & BIT(2))); in steam_do_deck_input_event()
1287 input_event(input, EV_KEY, BTN_TL, !!(b8 & BIT(3))); in steam_do_deck_input_event()
1288 input_event(input, EV_KEY, BTN_Y, !!(b8 & BIT(4))); in steam_do_deck_input_event()
1289 input_event(input, EV_KEY, BTN_B, !!(b8 & BIT(5))); in steam_do_deck_input_event()
1290 input_event(input, EV_KEY, BTN_X, !!(b8 & BIT(6))); in steam_do_deck_input_event()
1291 input_event(input, EV_KEY, BTN_A, !!(b8 & BIT(7))); in steam_do_deck_input_event()
1292 input_event(input, EV_KEY, BTN_SELECT, !!(b9 & BIT(4))); in steam_do_deck_input_event()
1293 input_event(input, EV_KEY, BTN_MODE, !!(b9 & BIT(5))); in steam_do_deck_input_event()
1294 input_event(input, EV_KEY, BTN_START, !!(b9 & BIT(6))); in steam_do_deck_input_event()
1295 input_event(input, EV_KEY, BTN_TRIGGER_HAPPY3, !!(b9 & BIT(7))); in steam_do_deck_input_event()
1296 input_event(input, EV_KEY, BTN_TRIGGER_HAPPY4, !!(b10 & BIT(0))); in steam_do_deck_input_event()
1297 input_event(input, EV_KEY, BTN_THUMBL, !!(b10 & BIT(6))); in steam_do_deck_input_event()
1298 input_event(input, EV_KEY, BTN_THUMBR, !!(b11 & BIT(2))); in steam_do_deck_input_event()
1299 input_event(input, EV_KEY, BTN_DPAD_UP, !!(b9 & BIT(0))); in steam_do_deck_input_event()
1300 input_event(input, EV_KEY, BTN_DPAD_RIGHT, !!(b9 & BIT(1))); in steam_do_deck_input_event()
1301 input_event(input, EV_KEY, BTN_DPAD_LEFT, !!(b9 & BIT(2))); in steam_do_deck_input_event()
1302 input_event(input, EV_KEY, BTN_DPAD_DOWN, !!(b9 & BIT(3))); in steam_do_deck_input_event()
1303 input_event(input, EV_KEY, BTN_THUMB, !!(b10 & BIT(1))); in steam_do_deck_input_event()
1304 input_event(input, EV_KEY, BTN_THUMB2, !!(b10 & BIT(2))); in steam_do_deck_input_event()
1305 input_event(input, EV_KEY, BTN_TRIGGER_HAPPY1, !!(b13 & BIT(1))); in steam_do_deck_input_event()
1306 input_event(input, EV_KEY, BTN_TRIGGER_HAPPY2, !!(b13 & BIT(2))); in steam_do_deck_input_event()
1307 input_event(input, EV_KEY, BTN_BASE, !!(b14 & BIT(2))); in steam_do_deck_input_event()