Home
last modified time | relevance | path

Searched refs:isBluetoothDevice (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/audio/
H A DAdiDeviceState.java21 import static android.media.AudioSystem.isBluetoothDevice;
80 mDeviceAddress = isBluetoothDevice(mInternalDeviceType) ? Objects.requireNonNull( in AdiDeviceState()
H A DSpatializerHelper.java21 import static android.media.AudioSystem.isBluetoothDevice;
369 if (isBluetoothDevice(currentDevice.getInternalType())) { in onRoutingUpdated()
629 if (isBluetoothDevice(internalDeviceType)) return deviceType; in getCanonicalDeviceType()
688 if (isBluetoothDevice(deviceType)) { in evaluateState()
781 if (isBluetoothDevice(deviceState.getInternalDeviceType()) in isAvailableForAdiDeviceState()
H A DAudioDeviceInventory.java20 import static android.media.AudioSystem.isBluetoothDevice;
192 final boolean isWireless = isBluetoothDevice(ada.getInternalType()); in findDeviceStateForAudioDeviceAttributes()
1329 .filter(d -> (!isBluetoothDevice(d.getInternalType())
1777 if (!isBluetoothDevice(di.mDeviceType)) {
1891 if (!isBluetoothDevice(di.mDeviceType)
1901 if (!isBluetoothDevice(di2.mDeviceType)
H A DAudioService.java10357 if (AudioSystem.isBluetoothDevice(ada.getInternalType())) { in retrieveBluetoothAddressUncheked()
10360 if (!(AudioSystem.isBluetoothDevice(ads.getInternalDeviceType()) in retrieveBluetoothAddressUncheked()
10405 if (!AudioSystem.isBluetoothDevice(ada.getInternalType())) { in anonymizeAudioDeviceAttributesUnchecked()
/aosp14/frameworks/base/media/java/android/media/
H A DAudioSystem.java1288 public static boolean isBluetoothDevice(int deviceType) { in isBluetoothDevice() method in AudioSystem