Lines Matching refs:kc

132 	u32 kc;				/* current input keycode */  member
1345 } else if (ictx->kc == KEY_CHANNELUP && (buf[2] & 0x40) != 0x40) { in imon_mouse_event()
1347 } else if (ictx->kc == KEY_CHANNELDOWN && (buf[2] & 0x40) != 0x40) { in imon_mouse_event()
1369 ictx->last_keycode = ictx->kc; in imon_mouse_event()
1419 ictx->kc = KEY_UNKNOWN; in imon_pad_to_keys()
1484 ictx->kc = KEY_UNKNOWN; in imon_pad_to_keys()
1516 ictx->kc = imon_remote_key_lookup(ictx, scancode); in imon_pad_to_keys()
1535 if (ictx->kc == KEY_RESERVED && buf[0] == 0x02 && buf[3] == 0x00) in imon_parse_press_type()
1536 ictx->kc = ictx->last_keycode; in imon_parse_press_type()
1539 else if (ictx->kc == KEY_RESERVED && buf[0] == 0x68 && buf[1] == 0x82 && in imon_parse_press_type()
1541 ictx->kc = ictx->last_keycode; in imon_parse_press_type()
1544 else if (ictx->kc == KEY_RESERVED && buf[0] == 0x01 && buf[1] == 0x00 && in imon_parse_press_type()
1546 ictx->kc = ictx->last_keycode; in imon_parse_press_type()
1554 } else if (ictx->kc == KEY_RESERVED) in imon_parse_press_type()
1580 u32 kc; in imon_incoming_packet() local
1595 kc = imon_panel_key_lookup(ictx, scancode); in imon_incoming_packet()
1603 kc = imon_mce_key_lookup(ictx, scancode); in imon_incoming_packet()
1606 kc = imon_remote_key_lookup(ictx, scancode); in imon_incoming_packet()
1612 if (kc == KEY_KEYBOARD && !ictx->release_code) { in imon_incoming_packet()
1613 ictx->last_keycode = kc; in imon_incoming_packet()
1626 ictx->kc = kc; in imon_incoming_packet()
1674 ictx->last_keycode = ictx->kc; in imon_incoming_packet()
1685 if (ictx->kc == KEY_MUTE || in imon_incoming_packet()
1687 if (ictx->kc == ictx->last_keycode && in imon_incoming_packet()
1695 kc = ictx->kc; in imon_incoming_packet()
1699 input_report_key(ictx->idev, kc, press_type); in imon_incoming_packet()
1703 input_report_key(ictx->idev, kc, 0); in imon_incoming_packet()
1707 ictx->last_keycode = kc; in imon_incoming_packet()
2049 u32 kc = key_table[i].keycode; in imon_init_idev() local
2050 __set_bit(kc, idev->keybit); in imon_init_idev()