HomeSort by relevance Sort by last modified time
    Searched defs:scanCode (Results 1 - 10 of 10) sorted by null

  /frameworks/native/include/input/
VirtualKeyMap.h 33 int32_t scanCode;
InputTransport.h 64 int32_t scanCode;
208 int32_t scanCode,
  /frameworks/base/core/jni/
android_view_KeyEvent.cpp 82 jint scanCode = env->GetIntField(eventObj, gKeyEventClassInfo.mScanCode);
88 event->initialize(deviceId, source, action, flags, keyCode, scanCode, metaState, repeatCount,
  /frameworks/native/libs/input/tests/
InputPublisherAndConsumer_test.cpp 79 const int32_t scanCode = 13;
86 keyCode, scanCode, metaState, repeatCount, downTime, eventTime);
108 EXPECT_EQ(scanCode, keyEvent->getScanCode());
  /frameworks/base/services/input/
InputListener.h 62 int32_t scanCode;
69 int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode,
InputDispatcher.h 478 int32_t scanCode;
496 int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState,
747 int32_t scanCode;
    [all...]
InputReader.cpp 531 InputDevice* device, int32_t keyCode, int32_t scanCode) {
534 "temporarily disabled for the next %0.3fms. keyCode=%d, scanCode=%d",
537 keyCode, scanCode);
588 int32_t scanCode) {
591 return getStateLocked(deviceId, sourceMask, scanCode, &InputDevice::getScanCodeState);
796 InputDevice* device, int32_t keyCode, int32_t scanCode) {
798 return mReader->shouldDropVirtualKeyLocked(now, device, keyCode, scanCode);
    [all...]
InputReader.h 321 int32_t scanCode) = 0;
356 InputDevice* device, int32_t keyCode, int32_t scanCode) = 0;
395 int32_t scanCode);
425 InputDevice* device, int32_t keyCode, int32_t scanCode);
477 InputDevice* device, int32_t keyCode, int32_t scanCode);
536 int32_t getScanCodeState(uint32_t sourceMask, int32_t scanCode);
936 virtual int32_t getScanCodeState(uint32_t sourceMask, int32_t scanCode);
    [all...]
  /frameworks/native/libs/input/
KeyLayoutMap.cpp 84 status_t KeyLayoutMap::mapKey(int32_t scanCode, int32_t usageCode,
86 const Key* key = getKey(scanCode, usageCode);
89 ALOGD("mapKey: scanCode=%d, usageCode=0x%08x ~ Failed.", scanCode, usageCode);
100 ALOGD("mapKey: scanCode=%d, usageCode=0x%08x ~ Result keyCode=%d, outFlags=0x%08x.",
101 scanCode, usageCode, *outKeyCode, *outFlags);
106 const KeyLayoutMap::Key* KeyLayoutMap::getKey(int32_t scanCode, int32_t usageCode) const {
113 if (scanCode) {
114 ssize_t index = mKeysByScanCode.indexOfKey(scanCode);
132 status_t KeyLayoutMap::mapAxis(int32_t scanCode, AxisInfo* outAxisInfo) const
    [all...]
  /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());

Completed in 220 milliseconds