Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DCachedBluetoothDevice.java78 boolean mJustDiscovered; field in CachedBluetoothDevice
434 if (mJustDiscovered != justDiscovered) { in setJustDiscovered()
435 mJustDiscovered = justDiscovered; in setJustDiscovered()
715 comparison = (another.mJustDiscovered ? 1 : 0) - (mJustDiscovered ? 1 : 0); in compareTo()
1085 boolean tmpJustDiscovered = mJustDiscovered; in switchSubDeviceContent()
1089 mJustDiscovered = mSubDevice.mJustDiscovered; in switchSubDeviceContent()
1093 mSubDevice.mJustDiscovered = tmpJustDiscovered; in switchSubDeviceContent()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
DCachedBluetoothDeviceTest.java905 mCachedDevice.mJustDiscovered = JUSTDISCOVERED_1; in switchSubDeviceContent()
907 subCachedDevice.mJustDiscovered = JUSTDISCOVERED_2; in switchSubDeviceContent()
911 assertThat(mCachedDevice.mJustDiscovered).isEqualTo(JUSTDISCOVERED_1); in switchSubDeviceContent()
914 assertThat(subCachedDevice.mJustDiscovered).isEqualTo(JUSTDISCOVERED_2); in switchSubDeviceContent()
919 assertThat(mCachedDevice.mJustDiscovered).isEqualTo(JUSTDISCOVERED_2); in switchSubDeviceContent()
922 assertThat(subCachedDevice.mJustDiscovered).isEqualTo(JUSTDISCOVERED_1); in switchSubDeviceContent()