Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/euicc/
DEuiccCardControllerTest.java55 private static final String KEY_LAST_BOOT_COUNT = "last_boot_count"; field in EuiccCardControllerTest
83 mLastBootCount = mSp.getInt(KEY_LAST_BOOT_COUNT, -1); in setUp()
118 Settings.Global.resetToDefaults(mContext.getContentResolver(), KEY_LAST_BOOT_COUNT); in tearDown() local
124 sp.edit().putInt(KEY_LAST_BOOT_COUNT, mLastBootCount).apply(); in tearDown()
129 mSp.edit().remove(KEY_LAST_BOOT_COUNT); in testIsBootUp()
133 mSp.edit().putInt(KEY_LAST_BOOT_COUNT, 1).apply(); in testIsBootUp()
134 Settings.Global.resetToDefaults(mContext.getContentResolver(), KEY_LAST_BOOT_COUNT); in testIsBootUp() local
137 mSp.edit().putInt(KEY_LAST_BOOT_COUNT, 1).apply(); in testIsBootUp()
141 mSp.edit().putInt(KEY_LAST_BOOT_COUNT, 2).apply(); in testIsBootUp()
143 assertEquals(mSp.getInt(KEY_LAST_BOOT_COUNT, -1), 1); in testIsBootUp()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccCardController.java55 private static final String KEY_LAST_BOOT_COUNT = "last_boot_count"; field in EuiccCardController
144 int lastBootCount = sp.getInt(KEY_LAST_BOOT_COUNT, -1); in isBootUp()
146 sp.edit().putInt(KEY_LAST_BOOT_COUNT, bootCount).apply(); in isBootUp()