Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/bluetooth/
DCarBluetoothUserServiceTest.java95 private CarBluetoothUserService mCarBluetoothUserService; field in CarBluetoothUserServiceTest
145 mCarBluetoothUserService = new CarBluetoothUserService(mMockPerUserCarServiceImpl); in setUp()
150 mCarBluetoothUserService.setupBluetoothConnectionProxies(); in setUp()
177 assertThat(mCarBluetoothUserService.startBluetoothVoiceRecognition()).isFalse(); in testBvra_noProxy_doNothing()
202 assertThat(mCarBluetoothUserService.startBluetoothVoiceRecognition()).isFalse(); in testBvra_noDevices_doNothing()
230 mCarBluetoothUserService.startBluetoothVoiceRecognition(); in testBvra_defaultDeviceSupports_bvraOnDefaultDevice()
259 mCarBluetoothUserService.startBluetoothVoiceRecognition(); in testBvra_defaultDeviceNoSupport_bvraOnFirstDevice()
291 assertThat(mCarBluetoothUserService.startBluetoothVoiceRecognition()).isTrue(); in testBvra_passUpInvocationResult()
294 assertThat(mCarBluetoothUserService.startBluetoothVoiceRecognition()).isFalse(); in testBvra_passUpInvocationResult()
/packages/services/Car/service/src/com/android/car/bluetooth/
DCarBluetoothService.java108 private ICarBluetoothUserService mCarBluetoothUserService; field in CarBluetoothService
256 mCarBluetoothUserService = mPerUserCarService.getBluetoothUserService(); in createBluetoothUserServiceLocked()
257 mCarBluetoothUserService.setupBluetoothConnectionProxies(); in createBluetoothUserServiceLocked()
277 if (mCarBluetoothUserService == null) { in destroyBluetoothUserServiceLocked()
281 mCarBluetoothUserService.closeBluetoothConnectionProxies(); in destroyBluetoothUserServiceLocked()
285 mCarBluetoothUserService = null; in destroyBluetoothUserServiceLocked()
334 mCarBluetoothUserService); in createBluetoothProfileInhibitManagerLocked()
612 return mCarBluetoothUserService.startBluetoothVoiceRecognition(); in startBluetoothVoiceRecognition()
647 writer.printf("User Proxies: %s\n", mCarBluetoothUserService != null ? "Yes" : "No"); in dump()
/packages/services/Car/service/src/com/android/car/
DPerUserCarServiceImpl.java48 private CarBluetoothUserService mCarBluetoothUserService; field in PerUserCarServiceImpl
76 mCarBluetoothUserService = new CarBluetoothUserService(this); in onCreate()
94 mCarBluetoothUserService.dump(pw); in dump()
112 return mCarBluetoothUserService; in getBluetoothUserService()