Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDevice.java600 A2dpProfile a2dpProfile = mProfileManager.getA2dpProfile(); in setActive() local
601 if (a2dpProfile != null && isConnectedProfile(a2dpProfile)) { in setActive()
602 if (a2dpProfile.setActiveDevice(getDevice())) { in setActive()
854 A2dpProfile a2dpProfile = mProfileManager.getA2dpProfile(); in fetchActiveDevices() local
855 if (a2dpProfile != null) { in fetchActiveDevices()
856 mIsActiveDeviceA2dp = mDevice.equals(a2dpProfile.getActiveDevice()); in fetchActiveDevices()
1419 A2dpProfile a2dpProfile = mProfileManager.getA2dpProfile(); in isConnectedA2dpDevice() local
1420 return a2dpProfile != null && a2dpProfile.getConnectionStatus(mDevice) == in isConnectedA2dpDevice()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumePanelDialog.java290 final A2dpProfile a2dpProfile = mProfileManager.getA2dpProfile(); in findActiveDevice() local
291 if (a2dpProfile != null) { in findActiveDevice()
292 return a2dpProfile.getActiveDevice(); in findActiveDevice()
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/media/
H A DLocalMediaManager.java485 final A2dpProfile a2dpProfile = mLocalBluetoothManager.getProfileManager().getA2dpProfile(); in isActiveDevice() local
486 if (a2dpProfile != null) { in isActiveDevice()
487 isActiveDeviceA2dp = device.getDevice().equals(a2dpProfile.getActiveDevice()); in isActiveDevice()
/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/media/
H A DLocalMediaManagerTest.java451 final A2dpProfile a2dpProfile = mock(A2dpProfile.class); in onDeviceListAdded_haveMutingExpectedDevice_addMutingExpectedDevice() local
452 profiles.add(a2dpProfile); in onDeviceListAdded_haveMutingExpectedDevice_addMutingExpectedDevice()