/external/qemu/distrib/sdl-1.2.15/src/video/nanox/ |
SDL_nxevents.c | 118 keysym -> scancode = keystroke -> scancode ;
|
/frameworks/base/services/input/ |
EventHub.cpp | 343 int32_t EventHub::getScanCodeState(int32_t deviceId, int32_t scanCode) const { 344 if (scanCode >= 0 && scanCode <= KEY_MAX) { 348 if (device && !device->isVirtual() && test_bit(scanCode, device->keyBitmask)) { 352 return test_bit(scanCode, keyState) ? AKEY_STATE_DOWN : AKEY_STATE_UP; 449 status_t EventHub::mapKey(int32_t deviceId, int32_t scanCode, int32_t usageCode, 458 if (!kcm->mapKey(scanCode, usageCode, outKeycode)) { 467 scanCode, usageCode, outKeycode, outFlags)) { 478 status_t EventHub::mapAxis(int32_t deviceId, int32_t scanCode, AxisInfo* outAxisInfo) const { 483 status_t err = device->keyMap.keyLayoutMap->mapAxis(scanCode, outAxisInfo) [all...] |
InputDispatcher.cpp | 663 entry->action, entry->flags, entry->keyCode, entry->scanCode, 811 "action=0x%x, flags=0x%x, keyCode=0x%x, scanCode=0x%x, metaState=0x%x, " 815 entry->action, entry->flags, entry->keyCode, entry->scanCode, entry->metaState, [all...] |
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
guideinputkeyboard.html | 146 Uint8 scancode; 158 >scancode</I 476 /* Print the hardware scancode first */ 477 printf( "Scancode: 0x%02X", key->keysym.scancode );
|
/frameworks/base/services/input/tests/ |
InputReader_test.cpp | 391 void setScanCodeState(int32_t deviceId, int32_t scanCode, int32_t state) { 393 device->scanCodeStates.replaceValueFor(scanCode, state); 406 void addKey(int32_t deviceId, int32_t scanCode, int32_t usageCode, 412 if (scanCode) { 413 device->keysByScanCode.add(scanCode, info); 512 virtual status_t mapKey(int32_t deviceId, int32_t scanCode, int32_t usageCode, 516 const KeyInfo* key = getKey(device, scanCode, usageCode); 530 const KeyInfo* getKey(Device* device, int32_t scanCode, int32_t usageCode) const { 537 if (scanCode) { 538 ssize_t index = device->keysByScanCode.indexOfKey(scanCode); [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_ph_events.c | 552 /* FIXME: This needs to check whether the cap & scancode is valid */ 583 keysym->scancode = key->key_scan; 592 switch (keysym->scancode)
|
/external/chromium_org/win8/metro_driver/ |
chrome_app_view_ash.cc | [all...] |
/frameworks/native/libs/input/ |
InputTransport.cpp | 245 int32_t scanCode, 252 "action=0x%x, flags=0x%x, keyCode=%d, scanCode=%d, metaState=0x%x, repeatCount=%d," 255 deviceId, source, action, flags, keyCode, scanCode, metaState, repeatCount, 272 msg.body.key.scanCode = scanCode; 889 msg->body.key.scanCode, [all...] |
Input.cpp | 129 int32_t scanCode, 138 mScanCode = scanCode;
|
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysevents.cc | 330 keysym.scancode = key; 363 keysym.scancode = key;
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testwm.c | 211 printf("Unknown Key (scancode = %d) %s ", sym->scancode,
|
/bionic/libc/kernel/common/linux/ |
kd.h | 150 unsigned int scancode, keycode; member in struct:kbkeycode
|
/external/kernel-headers/original/linux/ |
kd.h | 129 unsigned int scancode, keycode; member in struct:kbkeycode
|
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/ |
SDL_DirectFB_events.c | 194 keysym->scancode = ev->key_id;
|
/external/qemu/hw/ |
ps2.c | 37 #define KBD_CMD_SCANCODE 0xF0 /* Get/set scancode set */ 140 bits 6-0 - translated scancode set 2 146 /* XXX: add support for scancode sets 1 and 3 */ 272 /* Set the scancode translation mode.
|
/external/qemu/ |
keymaps.c | 179 fprintf(stderr, "Warning: no scancode found for keysym %d\n",
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
kd.h | 138 unsigned int scancode, keycode; member in struct:kbkeycode
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
kd.h | 138 unsigned int scancode, keycode; member in struct:kbkeycode
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
kd.h | 138 unsigned int scancode, keycode; member in struct:kbkeycode
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11events.c | 569 keysym.scancode = keycode; 667 keysym.scancode = 0; 674 scancode and symbol that corresponds to the X11 677 keysym.scancode = keycode; 697 keysym.scancode = keycode; 730 keysym.scancode = keycode; 769 keysym.scancode = keycode; [all...] |
/frameworks/native/include/input/ |
InputTransport.h | 64 int32_t scanCode; 208 int32_t scanCode,
|
KeyCharacterMap.h | 125 status_t mapKey(int32_t scanCode, int32_t usageCode, int32_t* outKeyCode) const;
|
/external/qemu/distrib/sdl-1.2.15/src/video/ggi/ |
SDL_ggievents.c | 252 keysym->scancode = ev->key.button;
|
/cts/tests/tests/view/src/android/view/cts/ |
KeyEventTest.java | 571 int scanCode = 1; 573 KeyEvent.KEYCODE_0, 5, KeyEvent.META_SHIFT_ON, 1, scanCode); 574 assertEquals(scanCode, mKeyEvent.getScanCode());
|
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/ |
SDL_sysevents.c | 103 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, const BYTE *keystate, LPWSTR wchars, int wsize, UINT flags); 844 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, const BYTE *keystate, LPWSTR wchars, int wsize, UINT flags) 849 if (ToAsciiEx(vkey, scancode, (PBYTE) keystate, (WORD*)chars, 0, GetKeyboardLayout(0)) == 1) {
|