Home
last modified time | relevance | path

Searched refs:onCustomInputEvent (Results 1 – 6 of 6) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DInputHalServiceTest.java537 }).when(mInputListener).onCustomInputEvent(any()); in dispatchesCustomInputEvent_mainDisplay()
563 }).when(mInputListener).onCustomInputEvent(any()); in dispatchesCustomInputEvent_clusterDisplay()
589 verify(mInputListener, never()).onCustomInputEvent(any()); in dispatchesCustomInputEvent_InvalidEvent()
595 verify(mInputListener, never()).onCustomInputEvent(any()); in dispatchesCustomInputEvent_InvalidEvent()
603 verify(mInputListener, never()).onCustomInputEvent(any()); in dispatchesCustomInputEvent_InvalidEvent()
620 }).when(mInputListener).onCustomInputEvent(any()); in dispatchesCustomInputEvent_acceptInputCodeHigherThanF10()
/packages/services/Car/service/src/com/android/car/hal/
DInputHalService.java112 void onCustomInputEvent(CustomInputEvent event); in onCustomInputEvent() method
866 listener.onCustomInputEvent(event);
/packages/services/Car/service/src/com/android/car/
DCarInputService.java613 public void onCustomInputEvent(CustomInputEvent event) { in onCustomInputEvent() method in CarInputService
614 if (!mCaptureController.onCustomInputEvent(event)) { in onCustomInputEvent()
DInputCaptureClientController.java585 public boolean onCustomInputEvent(CustomInputEvent event) { in onCustomInputEvent() method in InputCaptureClientController
DCarShellCommand.java2168 mCarInputService.onCustomInputEvent(event);
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarInputServiceTest.java310 mCarInputService.onCustomInputEvent(event); in testOnCustomInputEvent_delegatesToCaptureController()
312 verify(mCaptureController).onCustomInputEvent(same(event)); in testOnCustomInputEvent_delegatesToCaptureController()