Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/media/
DBluetoothMediaDevice.java91 final BluetoothClass bluetoothClass = mCachedDevice.getDevice().getBluetoothClass(); in isCarKitDevice() local
92 if (bluetoothClass != null) { in isCarKitDevice()
93 switch (bluetoothClass.getDeviceClass()) { in isCarKitDevice()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DBluetoothTile.java208 final BluetoothClass bluetoothClass = lastDevice.getBtClass(); in getSecondaryLabel() local
209 if (bluetoothClass != null) { in getSecondaryLabel()
213 } else if (bluetoothClass.doesClassMatch(BluetoothClass.PROFILE_A2DP)) { in getSecondaryLabel()
216 } else if (bluetoothClass.doesClassMatch(BluetoothClass.PROFILE_HEADSET)) { in getSecondaryLabel()
219 } else if (bluetoothClass.doesClassMatch(BluetoothClass.PROFILE_HID)) { in getSecondaryLabel()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DCachedBluetoothDevice.java578 BluetoothClass bluetoothClass = mDevice.getBluetoothClass(); in updateProfiles() local
580 if (bluetoothClass != null) Log.v(TAG, "Class: " + bluetoothClass.toString()); in updateProfiles()
/frameworks/base/core/java/android/bluetooth/
DBluetoothAdapter.java1306 public boolean setBluetoothClass(BluetoothClass bluetoothClass) { in setBluetoothClass() argument
1313 return mService.setBluetoothClass(bluetoothClass); in setBluetoothClass()