Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/dialog/
H A DMediaOutputDialog.java106 boolean isBluetoothLeDevice = false; in isBroadcastSupported()
111 isBluetoothLeDevice = mMediaOutputController.isBluetoothLeDevice( in isBroadcastSupported()
121 isBluetoothLeDevice = true; in isBroadcastSupported()
125 && (isBluetoothLeDevice || isBroadcastEnabled); in isBroadcastSupported()
H A DMediaOutputBroadcastDialog.java493 boolean isBluetoothLeDevice = false; in isBroadcastSupported()
495 isBluetoothLeDevice = mMediaOutputController.isBluetoothLeDevice( in isBroadcastSupported()
499 return mMediaOutputController.isBroadcastSupported() && isBluetoothLeDevice; in isBroadcastSupported()
H A DMediaOutputController.java1027 boolean isBluetoothLeDevice(@NonNull MediaDevice device) { in isBluetoothLeDevice() method in MediaOutputController
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/dialog/
H A DMediaOutputDialogTest.java363 when(mockMediaOutputController.isBluetoothLeDevice(any())).thenReturn(true); in getStopButtonText_supportsBroadcast_returnsBroadcastText()
/aosp14/frameworks/base/media/java/android/media/
H A DAudioSystem.java1291 || isBluetoothLeDevice(deviceType); in isBluetoothDevice()
1339 public static boolean isBluetoothLeDevice(int deviceType) { in isBluetoothLeDevice() method in AudioSystem
/aosp14/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioDeviceInventory.java1795 } else if (AudioSystem.isBluetoothLeDevice(di.mDeviceType)) {
1803 } else if (AudioSystem.isBluetoothLeDevice(di.mDeviceType)) {
1827 } else if (AudioSystem.isBluetoothLeDevice(di.mDeviceType)) {
H A DBtHelper.java949 } else if (AudioSystem.isBluetoothLeDevice(deviceType)) { in getProfileFromType()