Home
last modified time | relevance | path

Searched refs:leAudioProfile (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DBluetoothDetailsProfilesControllerTest.java525 LeAudioProfile leAudioProfile = mock(LeAudioProfile.class); in prefKeyInBlockingList_hideToggle() local
526 when(leAudioProfile.getNameResource(mDevice)) in prefKeyInBlockingList_hideToggle()
528 when(leAudioProfile.isProfileReady()).thenReturn(true); in prefKeyInBlockingList_hideToggle()
529 when(leAudioProfile.toString()).thenReturn("LE_AUDIO"); in prefKeyInBlockingList_hideToggle()
530 when(mProfileManager.getLeAudioProfile()).thenReturn(leAudioProfile); in prefKeyInBlockingList_hideToggle()
533 mConnectableProfiles.add(leAudioProfile); in prefKeyInBlockingList_hideToggle()
546 LeAudioProfile leAudioProfile = mock(LeAudioProfile.class); in prefKeyNotInBlockingList_showToggle() local
547 when(leAudioProfile.getNameResource(mDevice)) in prefKeyNotInBlockingList_showToggle()
549 when(leAudioProfile.isProfileReady()).thenReturn(true); in prefKeyNotInBlockingList_showToggle()
550 when(leAudioProfile.toString()).thenReturn("LE_AUDIO"); in prefKeyNotInBlockingList_showToggle()
[all …]
/packages/apps/Settings/src/com/android/settings/sound/
DAudioSwitchPreferenceController.java239 final LeAudioProfile leAudioProfile = mProfileManager.getLeAudioProfile(); in getConnectedLeAudioDevices() local
240 if (leAudioProfile == null) { in getConnectedLeAudioDevices()
244 final List<BluetoothDevice> devices = leAudioProfile.getConnectedDevices(); in getConnectedLeAudioDevices()
322 final LeAudioProfile leAudioProfile = mProfileManager.getLeAudioProfile(); in findActiveLeAudioDevice() local
324 if (leAudioProfile != null) { in findActiveLeAudioDevice()
325 List<BluetoothDevice> activeDevices = leAudioProfile.getActiveDevices(); in findActiveLeAudioDevice()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDetailsAudioDeviceTypeController.java90 LeAudioProfile leAudioProfile = mProfileManager.getLeAudioProfile(); in isAvailable() local
92 if (leAudioProfile != null) { in isAvailable()
93 leAudioProfileEnabled = leAudioProfile.isEnabled(mCachedDevice.getDevice()); in isAvailable()
DLeAudioBluetoothDetailsHeaderController.java232 LeAudioProfile leAudioProfile = mProfileManager.getLeAudioProfile(); in updateBatteryLayout() local
238 if (!leAudioProfile.isEnabled(mCachedDevice.getDevice())) { in updateBatteryLayout()
248 int deviceId = leAudioProfile.getAudioLocation(cachedDevice.getDevice()); in updateBatteryLayout()