Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/audio/
DAdiDeviceState.java21 import static android.media.AudioSystem.isBluetoothDevice;
89 mDeviceAddress = isBluetoothDevice(mInternalDeviceType) ? Objects.requireNonNull( in AdiDeviceState()
163 if (!isBluetoothDevice(mInternalDeviceType)) { in updateAudioDeviceCategory()
DSpatializerHelper.java21 import static android.media.AudioSystem.isBluetoothDevice;
373 if (isBluetoothDevice(currentDevice.getInternalType())) { in onRoutingUpdated()
637 if (isBluetoothDevice(internalDeviceType)) return deviceType; in getCanonicalDeviceType()
696 if (isBluetoothDevice(deviceType)) { in evaluateState()
788 if (isBluetoothDevice(deviceState.getInternalDeviceType()) in isAvailableForAdiDeviceState()
DLoudnessCodecHelper.java702 || (AudioSystem.isBluetoothDevice(internalDeviceType) in getDeviceSplRange()
705 } else if (AudioSystem.isBluetoothDevice(internalDeviceType)) { in getDeviceSplRange()
DAudioDeviceInventory.java27 import static android.media.AudioSystem.isBluetoothDevice;
451 final boolean isWireless = isBluetoothDevice(ada.getInternalType()); in findDeviceStateForAudioDeviceAttributes()
1685 .filter(d -> (!isBluetoothDevice(d.getInternalType())
2139 if (!isBluetoothDevice(di.mDeviceType)) {
2250 if (!isBluetoothDevice(di.mDeviceType)
2260 if (!isBluetoothDevice(di2.mDeviceType)
DAudioService.java10872 if (AudioSystem.isBluetoothDevice(ada.getInternalType())) { in retrieveBluetoothAddressUncheked()
10875 if (!(AudioSystem.isBluetoothDevice(ads.getInternalDeviceType()) in retrieveBluetoothAddressUncheked()
10907 if (!AudioSystem.isBluetoothDevice(ada.getInternalType())) { in anonymizeAudioDeviceAttributesUnchecked()
/frameworks/base/media/java/android/media/
DUtils.java686 if (!AudioSystem.isBluetoothDevice(deviceType)) {
DAudioSystem.java1314 public static boolean isBluetoothDevice(int deviceType) { in isBluetoothDevice() method in AudioSystem