HomeSort by relevance Sort by last modified time
    Searched refs:keycodes (Results 1 - 19 of 19) sorted by null

  /bionic/libc/kernel/common/linux/
keychord.h 27 __u16 keycodes[]; member in struct:input_keychord
  /external/kernel-headers/original/linux/
keychord.h 45 /* number of keycodes in this keychord */
48 /* variable length array of keycodes */
49 __u16 keycodes[]; member in struct:input_keychord
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
keychord.h 27 __u16 keycodes[]; member in struct:input_keychord
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
keychord.h 27 __u16 keycodes[]; member in struct:input_keychord
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
keychord.h 27 __u16 keycodes[]; member in struct:input_keychord
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
keychord.h 27 __u16 keycodes[]; member in struct:input_keychord
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
keychord.h 27 __u16 keycodes[]; member in struct:input_keychord
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
keychord.h 27 __u16 keycodes[]; member in struct:input_keychord
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 120 boolean hasKeys(in int[] keycodes, inout boolean[] keyExists);
  /external/qemu/android/skin/
keyboard.c 57 int keycodes[ MAX_KEYCODES ]; member in struct:SkinKeyboard
110 kb->keycodes[(int)kb->keycode_count++] = ( (code & 0x1ff) | (down ? 0x200 : 0) );
123 int code = kb->keycodes[nn];
128 kbd_put_keycodes(kb->keycodes, kb->keycode_count);
  /system/core/init/
init.h 144 /* keycodes for triggering this service via /dev/keychord */
145 int *keycodes; member in struct:service
keywords.h 53 KEYWORD(keycodes, OPTION, 0, 0)
parser.c 683 parse_error(state, "keycodes option requires atleast one keycode\n");
685 svc->keycodes = malloc((nargs - 1) * sizeof(svc->keycodes[0]));
686 if (!svc->keycodes) {
687 parse_error(state, "could not allocate keycodes\n");
691 svc->keycodes[i - 1] = atoi(args[i]);
init.c 720 if (svc->keycodes) {
722 size = sizeof(*keychord) + svc->nkeycodes * sizeof(keychord->keycodes[0]);
738 keychord->keycodes[i] = svc->keycodes[i];
  /external/qemu/
console.h 20 typedef void QEMUPutKBDEventN(void *opaque, int* keycodes, int count);
41 void kbd_put_keycodes(int* keycodes, int count);
vl-android.c 711 void kbd_put_keycodes(int* keycodes, int count)
715 qemu_put_kbd_event_n(qemu_put_kbd_event_n_opaque, keycodes, count);
722 qemu_put_kbd_event(qemu_put_kbd_event_opaque, keycodes[nn]);
    [all...]
  /external/qemu/android/
main.c 749 static const struct { SkinKeyCommand cmd; AndroidKeyCode kcode; } keycodes[] = local
775 for (nn = 0; keycodes[nn].kcode != 0; nn++) {
776 if (command == keycodes[nn].cmd) {
777 unsigned code = keycodes[nn].kcode;
    [all...]
  /frameworks/base/services/java/com/android/server/
KeyInputQueue.java 489 public static native boolean hasKeys(int[] keycodes, boolean[] keyExists);
    [all...]
WindowManagerService.java     [all...]

Completed in 476 milliseconds