Home
last modified time | relevance | path

Searched refs:bluetoothClass (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/media/
DBluetoothMediaDevice.java114 final BluetoothClass bluetoothClass = mCachedDevice.getDevice().getBluetoothClass(); in isCarKitDevice() local
115 if (bluetoothClass != null) { in isCarKitDevice()
116 switch (bluetoothClass.getDeviceClass()) { in isCarKitDevice()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DBluetoothTile.java276 final BluetoothClass bluetoothClass = device.getBtClass(); in getSecondaryLabel() local
277 if (bluetoothClass != null) { in getSecondaryLabel()
281 } else if (bluetoothClass.doesClassMatch(BluetoothClass.PROFILE_A2DP)) { in getSecondaryLabel()
284 } else if (bluetoothClass.doesClassMatch(BluetoothClass.PROFILE_HEADSET)) { in getSecondaryLabel()
287 } else if (bluetoothClass.doesClassMatch(BluetoothClass.PROFILE_HID)) { in getSecondaryLabel()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
DCsipDeviceManagerTest.java92 BluetoothClass bluetoothClass = BluetoothClass.CREATOR.createFromParcel(p); in createBtClass() local
94 return bluetoothClass; in createBtClass()
DCachedBluetoothDeviceManagerTest.java103 BluetoothClass bluetoothClass = BluetoothClass.CREATOR.createFromParcel(p); in createBtClass() local
105 return bluetoothClass; in createBtClass()
DHearingAidDeviceManagerTest.java123 BluetoothClass bluetoothClass = BluetoothClass.CREATOR.createFromParcel(p); in createBtClass() local
125 return bluetoothClass; in createBtClass()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DBluetoothUtils.java334 final BluetoothClass bluetoothClass = bluetoothDevice.getBluetoothClass(); in isDeviceClassMatched() local
335 return bluetoothClass != null && bluetoothClass.getDeviceClass() == device; in isDeviceClassMatched()
DCachedBluetoothDevice.java931 BluetoothClass bluetoothClass = mDevice.getBluetoothClass(); in updateProfiles() local
933 if (bluetoothClass != null) Log.v(TAG, "Class: " + bluetoothClass.toString()); in updateProfiles()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/media/
DMediaDeviceTest.java129 BluetoothClass bluetoothClass = BluetoothClass.CREATOR.createFromParcel(p); in createBtClass() local
131 return bluetoothClass; in createBtClass()
/frameworks/base/services/core/java/com/android/server/audio/
DBtHelper.java1386 final BluetoothClass bluetoothClass = mBluetoothHeadsetDevice.getBluetoothClass(); in dump() local
1387 if (bluetoothClass != null) { in dump()
1389 + btDeviceClassToString(bluetoothClass.getDeviceClass())); in dump()