Home
last modified time | relevance | path

Searched refs:notifyKeyEvent (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DKeyboardInterceptorTest.java79 verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenNonspecialKeyArrives_withNothingInQueue_eventGoesToAms()
88 verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenVolumeKeyArrives_andPolicySaysUseIt_eventGoesToAms()
97 verify(mMockAms, times(0)).notifyKeyEvent(anyObject(), anyInt()); in whenVolumeKeyArrives_andPolicySaysDropIt_eventDropped()
109 verify(mMockAms, times(0)).notifyKeyEvent(anyObject(), anyInt()); in whenVolumeKeyArrives_andPolicySaysDelayThenUse_eventQueuedThenSentToAms()
115 verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenVolumeKeyArrives_andPolicySaysDelayThenUse_eventQueuedThenSentToAms()
126 verify(mMockAms, times(0)).notifyKeyEvent(anyObject(), anyInt()); in whenVolumeKeyArrives_andPolicySaysDelayThenDrop_eventQueuedThenDropped()
132 verify(mMockAms, times(0)).notifyKeyEvent(anyObject(), anyInt()); in whenVolumeKeyArrives_andPolicySaysDelayThenDrop_eventQueuedThenDropped()
161 inOrder.verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenSomeEventsGetDelayed_allEventsStillInOrder()
192 inOrder.verify(mMockAms).notifyKeyEvent(argThat(matchesKeyEvent(event)), eq(0)); in whenSomeEventsGetDropped_otherEventsStillInOrder()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DKeyboardInterceptor.java86 mAms.notifyKeyEvent(event, policyFlags); in onKeyEvent()
134 mAms.notifyKeyEvent(mEventQueueEnd.event, mEventQueueEnd.policyFlags); in processQueuedEvents()
DAccessibilityManagerService.java1803 public boolean notifyKeyEvent(KeyEvent event, int policyFlags) { in notifyKeyEvent() method in AccessibilityManagerService