• Home
  • Raw
  • Download

Lines Matching full:ev_key

426 	input_set_capability(input, EV_KEY, BTN_TR2);  in steam_input_register()
427 input_set_capability(input, EV_KEY, BTN_TL2); in steam_input_register()
428 input_set_capability(input, EV_KEY, BTN_TR); in steam_input_register()
429 input_set_capability(input, EV_KEY, BTN_TL); in steam_input_register()
430 input_set_capability(input, EV_KEY, BTN_Y); in steam_input_register()
431 input_set_capability(input, EV_KEY, BTN_B); in steam_input_register()
432 input_set_capability(input, EV_KEY, BTN_X); in steam_input_register()
433 input_set_capability(input, EV_KEY, BTN_A); in steam_input_register()
434 input_set_capability(input, EV_KEY, BTN_DPAD_UP); in steam_input_register()
435 input_set_capability(input, EV_KEY, BTN_DPAD_RIGHT); in steam_input_register()
436 input_set_capability(input, EV_KEY, BTN_DPAD_LEFT); in steam_input_register()
437 input_set_capability(input, EV_KEY, BTN_DPAD_DOWN); in steam_input_register()
438 input_set_capability(input, EV_KEY, BTN_SELECT); in steam_input_register()
439 input_set_capability(input, EV_KEY, BTN_MODE); in steam_input_register()
440 input_set_capability(input, EV_KEY, BTN_START); in steam_input_register()
441 input_set_capability(input, EV_KEY, BTN_GEAR_DOWN); in steam_input_register()
442 input_set_capability(input, EV_KEY, BTN_GEAR_UP); in steam_input_register()
443 input_set_capability(input, EV_KEY, BTN_THUMBR); in steam_input_register()
444 input_set_capability(input, EV_KEY, BTN_THUMBL); in steam_input_register()
445 input_set_capability(input, EV_KEY, BTN_THUMB); in steam_input_register()
446 input_set_capability(input, EV_KEY, BTN_THUMB2); in steam_input_register()
971 input_event(input, EV_KEY, BTN_TR2, !!(b8 & BIT(0))); in steam_do_input_event()
972 input_event(input, EV_KEY, BTN_TL2, !!(b8 & BIT(1))); in steam_do_input_event()
973 input_event(input, EV_KEY, BTN_TR, !!(b8 & BIT(2))); in steam_do_input_event()
974 input_event(input, EV_KEY, BTN_TL, !!(b8 & BIT(3))); in steam_do_input_event()
975 input_event(input, EV_KEY, BTN_Y, !!(b8 & BIT(4))); in steam_do_input_event()
976 input_event(input, EV_KEY, BTN_B, !!(b8 & BIT(5))); in steam_do_input_event()
977 input_event(input, EV_KEY, BTN_X, !!(b8 & BIT(6))); in steam_do_input_event()
978 input_event(input, EV_KEY, BTN_A, !!(b8 & BIT(7))); in steam_do_input_event()
979 input_event(input, EV_KEY, BTN_SELECT, !!(b9 & BIT(4))); in steam_do_input_event()
980 input_event(input, EV_KEY, BTN_MODE, !!(b9 & BIT(5))); in steam_do_input_event()
981 input_event(input, EV_KEY, BTN_START, !!(b9 & BIT(6))); in steam_do_input_event()
982 input_event(input, EV_KEY, BTN_GEAR_DOWN, !!(b9 & BIT(7))); in steam_do_input_event()
983 input_event(input, EV_KEY, BTN_GEAR_UP, !!(b10 & BIT(0))); in steam_do_input_event()
984 input_event(input, EV_KEY, BTN_THUMBR, !!(b10 & BIT(2))); in steam_do_input_event()
985 input_event(input, EV_KEY, BTN_THUMBL, !!(b10 & BIT(6))); in steam_do_input_event()
986 input_event(input, EV_KEY, BTN_THUMB, lpad_touched || lpad_and_joy); in steam_do_input_event()
987 input_event(input, EV_KEY, BTN_THUMB2, !!(b10 & BIT(4))); in steam_do_input_event()
988 input_event(input, EV_KEY, BTN_DPAD_UP, !!(b9 & BIT(0))); in steam_do_input_event()
989 input_event(input, EV_KEY, BTN_DPAD_RIGHT, !!(b9 & BIT(1))); in steam_do_input_event()
990 input_event(input, EV_KEY, BTN_DPAD_LEFT, !!(b9 & BIT(2))); in steam_do_input_event()
991 input_event(input, EV_KEY, BTN_DPAD_DOWN, !!(b9 & BIT(3))); in steam_do_input_event()