Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDevice.java89 boolean mJustDiscovered; field in CachedBluetoothDevice
547 if (mJustDiscovered != justDiscovered) { in setJustDiscovered()
548 mJustDiscovered = justDiscovered; in setJustDiscovered()
824 comparison = (another.mJustDiscovered ? 1 : 0) - (mJustDiscovered ? 1 : 0); in compareTo()
1210 boolean tmpJustDiscovered = mJustDiscovered; in switchSubDeviceContent()
1214 mJustDiscovered = mSubDevice.mJustDiscovered; in switchSubDeviceContent()
1218 mSubDevice.mJustDiscovered = tmpJustDiscovered; in switchSubDeviceContent()
/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDeviceTest.java919 mCachedDevice.mJustDiscovered = JUSTDISCOVERED_1; in switchSubDeviceContent()
921 subCachedDevice.mJustDiscovered = JUSTDISCOVERED_2; in switchSubDeviceContent()
925 assertThat(mCachedDevice.mJustDiscovered).isEqualTo(JUSTDISCOVERED_1); in switchSubDeviceContent()
928 assertThat(subCachedDevice.mJustDiscovered).isEqualTo(JUSTDISCOVERED_2); in switchSubDeviceContent()
933 assertThat(mCachedDevice.mJustDiscovered).isEqualTo(JUSTDISCOVERED_2); in switchSubDeviceContent()
936 assertThat(subCachedDevice.mJustDiscovered).isEqualTo(JUSTDISCOVERED_1); in switchSubDeviceContent()