Home
last modified time | relevance | path

Searched refs:CarInputService (Results 1 – 14 of 14) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarInputServiceTest.java101 @Mock CarInputService.KeyEventListener mDefaultKeyEventMainListener;
102 @Mock CarInputService.MotionEventListener mDefaultMotionEventMainListener;
103 @Mock CarInputService.KeyEventListener mInstrumentClusterKeyListener;
120 private CarInputService mCarInputService;
148 super(CarInputService.TAG); in CarInputServiceTest()
153 mCarInputService = new CarInputService(mContext, mInputHalService, mCarUserService, in setUp()
223 CarInputService.LONG_PRESS_TIMEOUT).that( in testConstantValueMatching()
224 CarInputService.LONG_PRESS_TIMEOUT).isEqualTo( in testConstantValueMatching()
342 CarInputService.KeyEventListener listener = mock(CarInputService.KeyEventListener.class); in ordinaryEvents_onInstrumentClusterDisplay_routedToListener()
351 CarInputService.KeyEventListener listener1 = mock(CarInputService.KeyEventListener.class); in registerKeyEventListener_separateListenersWithSameEventsOfInterest_fails()
[all …]
DCarInputRotaryServiceTest.java19 import static com.android.car.CarInputService.ENABLED_ACCESSIBILITY_SERVICES_SEPARATOR;
83 @Mock private CarInputService.KeyEventListener mDefaultKeyEventMainListener;
84 @Mock private CarInputService.MotionEventListener mDefaultMotionEventMainListener;
101 private CarInputService mCarInputService;
299 mCarInputService = new CarInputService(mMockContext, mInputHalService, mCarUserService, in init()
304 CarInputService.sDefaultShowCallback); in init()
DCarProjectionServiceTest.java113 private CarInputService mCarInputService;
/packages/services/Car/service/src/com/android/car/cluster/
DInstrumentClusterService.java52 import com.android.car.CarInputService;
53 import com.android.car.CarInputService.KeyEventListener;
86 private final CarInputService mCarInputService;
218 CarInputService carInputService) { in InstrumentClusterService()
224 CarInputService carInputService, long rendererServiceWaitTimeoutMs) { in InstrumentClusterService()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/media/
DCarMediaServiceTest.java76 import com.android.car.CarInputService;
77 import com.android.car.CarInputService.KeyEventListener;
122 @Mock private CarInputService mMockInputService;
184 CarLocalServices.removeServiceForTest(CarInputService.class); in setUp()
185 CarLocalServices.addService(CarInputService.class, mMockInputService); in setUp()
191 CarLocalServices.removeServiceForTest(CarInputService.class); in tearDown()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/cluster/
DInstrumentClusterServiceTest.java57 import com.android.car.CarInputService;
83 private CarInputService mCarInputService;
/packages/services/Car/service/src/com/android/car/
DCarInputService.java98 public class CarInputService extends ICarInput.Stub class
304 public CarInputService(Context context, InputHalService inputHalService, in CarInputService() method in CarInputService
330 CarInputService(Context context, InputHalService inputHalService, CarUserService userService, in CarInputService() method in CarInputService
DICarImpl.java140 private final CarInputService mCarInputService;
331 mCarInputService = constructWithTrace(t, CarInputService.class, in ICarImpl()
332 () -> new CarInputService(mContext, mHal.getInputHal(), mCarUserService, in ICarImpl()
DCarProjectionService.java104 private final CarInputService mCarInputService;
200 CarInputService carInputService, CarBluetoothService carBluetoothService) { in CarProjectionService()
DCarMediaService.java84 import com.android.car.CarInputService.KeyEventListener;
617 CarLocalServices.getService(CarInputService.class) in setKeyEventListener()
DCarShellCommand.java545 private final CarInputService mCarInputService;
577 mCarInputService = (CarInputService) allServicesByClazz.get(CarInputService.class); in CarShellCommand()
/packages/services/Car/service/
DOWNERS23 per-file src/com/android/car/CarInputService.java = kanant@google.com
/packages/services/Car/service/src/com/android/car/audio/
DCarAudioService.java123 import com.android.car.CarInputService;
124 import com.android.car.CarInputService.KeyEventListener;
364 private CarInputService mCarInputService;
473 mCarInputService = CarLocalServices.getService(CarInputService.class); in init()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/audio/
DCarAudioServiceUnitTest.java194 import com.android.car.CarInputService;
195 import com.android.car.CarInputService.KeyEventListener;
477 private CarInputService mMockCarInputService;
661 CarLocalServices.removeServiceForTest(CarInputService.class); in setUpService()
662 CarLocalServices.addService(CarInputService.class, mMockCarInputService); in setUpService()