Searched refs:notifyKeyEvent (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
D | KeyboardInterceptorTest.java | 76 verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenNonspecialKeyArrives_withNothingInQueue_eventGoesToAms() 85 verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenVolumeKeyArrives_andPolicySaysUseIt_eventGoesToAms() 94 verify(mMockAms, times(0)).notifyKeyEvent(anyObject(), anyInt()); in whenVolumeKeyArrives_andPolicySaysDropIt_eventDropped() 106 verify(mMockAms, times(0)).notifyKeyEvent(anyObject(), anyInt()); in whenVolumeKeyArrives_andPolicySaysDelayThenUse_eventQueuedThenSentToAms() 112 verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenVolumeKeyArrives_andPolicySaysDelayThenUse_eventQueuedThenSentToAms() 123 verify(mMockAms, times(0)).notifyKeyEvent(anyObject(), anyInt()); in whenVolumeKeyArrives_andPolicySaysDelayThenDrop_eventQueuedThenDropped() 129 verify(mMockAms, times(0)).notifyKeyEvent(anyObject(), anyInt()); in whenVolumeKeyArrives_andPolicySaysDelayThenDrop_eventQueuedThenDropped() 158 inOrder.verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenSomeEventsGetDelayed_allEventsStillInOrder() 189 inOrder.verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenSomeEventsGetDropped_otherEventsStillInOrder()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | KeyboardInterceptor.java | 80 mAms.notifyKeyEvent(event, policyFlags); in onKeyEvent() 128 mAms.notifyKeyEvent(mEventQueueEnd.event, mEventQueueEnd.policyFlags); in processQueuedEvents()
|
D | AccessibilityManagerService.java | 965 public boolean notifyKeyEvent(KeyEvent event, int policyFlags) { in notifyKeyEvent() method in AccessibilityManagerService
|