/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
H A D | KeyboardInterceptorTest.java | 85 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenVolumeKeyArrives_andPolicySaysUseIt_eventGoesToAms() 94 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenVolumeKeyArrives_andPolicySaysDropIt_eventDropped() 104 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenVolumeKeyArrives_andPolicySaysDelayThenUse_eventQueuedThenSentToAms() 111 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenVolumeKeyArrives_andPolicySaysDelayThenUse_eventQueuedThenSentToAms() 121 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenVolumeKeyArrives_andPolicySaysDelayThenDrop_eventQueuedThenDropped() 128 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenVolumeKeyArrives_andPolicySaysDelayThenDrop_eventQueuedThenDropped() 143 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenSomeEventsGetDelayed_allEventsStillInOrder() 145 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenSomeEventsGetDelayed_allEventsStillInOrder() 152 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenSomeEventsGetDelayed_allEventsStillInOrder() 154 when(mMockPolicy.interceptKeyBeforeDispatching((IBinder) argThat(nullValue()), in whenSomeEventsGetDelayed_allEventsStillInOrder() [all …]
|
/aosp14/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | InputManagerCallback.java | 181 public long interceptKeyBeforeDispatching( in interceptKeyBeforeDispatching() method in InputManagerCallback 183 return mService.mPolicy.interceptKeyBeforeDispatching(focusedToken, event, policyFlags); in interceptKeyBeforeDispatching()
|
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
H A D | KeyboardInterceptor.java | 151 return mPolicy.interceptKeyBeforeDispatching(null, event, policyFlags); in getEventDelay()
|
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | TestWindowManagerPolicy.java | 98 public long interceptKeyBeforeDispatching(IBinder focusedToken, KeyEvent event, in interceptKeyBeforeDispatching() method in TestWindowManagerPolicy
|
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/policy/ |
H A D | ShortcutKeyTestBase.java | 165 if (0 == mPhoneWindowManager.interceptKeyBeforeDispatching(keyEvent)) { in interceptKey()
|
H A D | TestPhoneWindowManager.java | 305 long interceptKeyBeforeDispatching(KeyEvent event) { in interceptKeyBeforeDispatching() method in TestPhoneWindowManager 306 return mPhoneWindowManager.interceptKeyBeforeDispatching(null /*focusedToken*/, in interceptKeyBeforeDispatching()
|
/aosp14/frameworks/base/services/core/java/com/android/server/policy/ |
H A D | WindowManagerPolicy.java | 732 long interceptKeyBeforeDispatching(IBinder focusedToken, KeyEvent event, int policyFlags); in interceptKeyBeforeDispatching() method
|
H A D | PhoneWindowManager.java | 2973 public long interceptKeyBeforeDispatching(IBinder focusedToken, KeyEvent event, 3650 long delayMillis = interceptKeyBeforeDispatching(
|
/aosp14/frameworks/base/services/core/jni/ |
H A D | com_android_server_input_InputManagerService.cpp | 116 jmethodID interceptKeyBeforeDispatching; member 352 nsecs_t interceptKeyBeforeDispatching(const sp<IBinder>& token, const KeyEvent& keyEvent, 1438 nsecs_t NativeInputManager::interceptKeyBeforeDispatching(const sp<IBinder>& token, in interceptKeyBeforeDispatching() function in android::NativeInputManager 1462 env->CallLongMethod(mServiceObj, gServiceClassInfo.interceptKeyBeforeDispatching, in interceptKeyBeforeDispatching() 2779 GET_METHOD_ID(gServiceClassInfo.interceptKeyBeforeDispatching, clazz, in register_android_server_InputManager()
|
/aosp14/frameworks/base/services/core/java/com/android/server/input/ |
H A D | InputManagerService.java | 2506 private long interceptKeyBeforeDispatching(IBinder focus, KeyEvent event, int policyFlags) { in interceptKeyBeforeDispatching() method in InputManagerService 2507 return mWindowManagerCallbacks.interceptKeyBeforeDispatching(focus, event, policyFlags); in interceptKeyBeforeDispatching() 2897 long interceptKeyBeforeDispatching(IBinder token, KeyEvent event, int policyFlags); in interceptKeyBeforeDispatching() method
|