Home
last modified time | relevance | path

Searched refs:keysym (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/s390/char/
H A Dkeyboard.c157 unsigned short *keymap, keysym; in kbd_ascebc() local
167 keysym = keymap[j]; in kbd_ascebc()
168 if (KTYP(keysym) == (KT_LATIN | 0xf0) || in kbd_ascebc()
169 KTYP(keysym) == (KT_LETTER | 0xf0)) in kbd_ascebc()
170 ascebc[KVAL(keysym)] = k; in kbd_ascebc()
171 else if (KTYP(keysym) == (KT_DEAD | 0xf0)) in kbd_ascebc()
172 ascebc[ret_diacr[KVAL(keysym)]] = k; in kbd_ascebc()
184 unsigned short *keymap, keysym;
193 keysym = keymap[j];
195 if (KTYP(keysym) == (KT_LATIN | 0xf0) ||
[all …]
/linux/Documentation/input/
H A Dnotifier.rst16 - KBD_UNBOUND_KEYCODE events are sent if the keycode is not bound to a keysym.
18 - KBD_UNICODE events are sent if the keycode -> keysym translation produced a
20 - KBD_KEYSYM events are sent if the keycode -> keysym translation produced a
21 non-unicode character. value is the keysym.
48 params.value = keysym;
51 apply keysym;
/linux/drivers/tty/vt/
H A Dkeyboard.c1373 unsigned short keysym, *key_map; in kbd_keycode() local
1459 keysym = key_map[keycode]; in kbd_keycode()
1461 keysym = U(K(KT_BRL, keycode - KEY_BRL_DOT1 + 1)); in kbd_keycode()
1465 type = KTYP(keysym); in kbd_keycode()
1468 param.value = keysym; in kbd_keycode()
1473 k_unicode(vc, keysym, !down); in kbd_keycode()
1484 keysym = key_map[keycode]; in kbd_keycode()
1488 param.value = keysym; in kbd_keycode()
1497 (*k_handler[type])(vc, KVAL(keysym), !down); in kbd_keycode()
/linux/drivers/accessibility/speakup/
H A Dmain.c2108 speakup_key(struct vc_data *vc, int shift_state, int keycode, u_short keysym, in speakup_key() argument
2114 u_char type = KTYP(keysym), value = KVAL(keysym), new_key = 0; in speakup_key()