Searched refs:createKeyEvent (Results 1 – 8 of 8) sorted by relevance
/aosp12/frameworks/base/tests/Input/src/com/android/test/input/ |
H A D | InputEventAssignerTest.kt | 46 private fun createKeyEvent(action: Int, eventTime: Long): KeyEvent { regex 118 val down = createKeyEvent(KeyEvent.ACTION_DOWN, 20) 121 val up = createKeyEvent(KeyEvent.ACTION_UP, 21) 126 val down2 = createKeyEvent(KeyEvent.ACTION_DOWN, 22)
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_view_InputQueue.cpp | 167 KeyEvent* InputQueue::createKeyEvent() { in createKeyEvent() function in android::InputQueue 168 return mPooledInputEventFactory.createKeyEvent(); in createKeyEvent() 222 KeyEvent* event = queue->createKeyEvent(); in nativeSendKeyEvent()
|
/aosp12/frameworks/base/core/jni/include/android_runtime/ |
H A D | android_view_InputQueue.h | 51 KeyEvent* createKeyEvent();
|
/aosp12/frameworks/native/include/input/ |
H A D | Input.h | 950 virtual KeyEvent* createKeyEvent() = 0; 966 virtual KeyEvent* createKeyEvent() override { return &mKeyEvent; } in createKeyEvent() function 988 virtual KeyEvent* createKeyEvent() override;
|
/aosp12/packages/services/Car/service/src/com/android/car/ |
H A D | CarInputService.java | 429 KeyEvent downEvent = createKeyEvent(/* down= */ true, uptime, uptime, keyCode); in rotaryEventToKeyEvents() 430 KeyEvent upEvent = createKeyEvent(/* down= */ false, uptime, uptime, keyCode); in rotaryEventToKeyEvents() 437 private static KeyEvent createKeyEvent(boolean down, long downTime, long eventTime, in createKeyEvent() method in CarInputService
|
/aosp12/frameworks/native/libs/input/ |
H A D | Input.cpp | 906 KeyEvent* PooledInputEventFactory::createKeyEvent() { in createKeyEvent() function in android::PooledInputEventFactory
|
H A D | InputTransport.cpp | 751 KeyEvent* keyEvent = factory->createKeyEvent(); in consume()
|
/aosp12/frameworks/native/services/inputflinger/dispatcher/ |
H A D | InputDispatcher.cpp | 444 static KeyEvent createKeyEvent(const KeyEntry& entry) { in createKeyEvent() function 5714 KeyEvent event = createKeyEvent(entry); in doInterceptKeyBeforeDispatchingLockedInterruptible() 5931 KeyEvent event = createKeyEvent(keyEntry); in afterKeyEventLockedInterruptible() 5973 KeyEvent event = createKeyEvent(keyEntry); in afterKeyEventLockedInterruptible()
|