Home
last modified time | relevance | path

Searched refs:cachedBluetoothDevice (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDeviceTest.java895 CachedBluetoothDevice cachedBluetoothDevice = in deviceName_testAliasNameAvailable() local
898 assertThat(cachedBluetoothDevice.getName()).isEqualTo(DEVICE_ALIAS); in deviceName_testAliasNameAvailable()
900 assertThat(cachedBluetoothDevice.hasHumanReadableName()).isTrue(); in deviceName_testAliasNameAvailable()
905 CachedBluetoothDevice cachedBluetoothDevice = in deviceName_testNameNotAvailable() local
908 assertThat(cachedBluetoothDevice.getName()).isEqualTo(DEVICE_ADDRESS); in deviceName_testNameNotAvailable()
910 assertThat(cachedBluetoothDevice.hasHumanReadableName()).isFalse(); in deviceName_testNameNotAvailable()
922 CachedBluetoothDevice cachedBluetoothDevice = in deviceName_testRenameDevice() local
925 assertThat(cachedBluetoothDevice.getName()).isEqualTo(DEVICE_ALIAS); in deviceName_testRenameDevice()
927 cachedBluetoothDevice.setName(null); in deviceName_testRenameDevice()
930 cachedBluetoothDevice.setName(DEVICE_ALIAS_NEW); in deviceName_testRenameDevice()
[all …]
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDeviceManager.java360 public synchronized void onActiveDeviceChanged(CachedBluetoothDevice cachedBluetoothDevice) { in onActiveDeviceChanged() argument
361 if (cachedBluetoothDevice.isHearingAidDevice()) { in onActiveDeviceChanged()
362 mHearingAidDeviceManager.onActiveDeviceChanged(cachedBluetoothDevice); in onActiveDeviceChanged()