Home
last modified time | relevance | path

Searched refs:bootCount (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
DPowerUI.java548 int bootCount = -1; in showWarnOnThermalShutdown() local
551 bootCount = Settings.Global.getInt(mContext.getContentResolver(), in showWarnOnThermalShutdown()
557 if (bootCount > lastReboot) { in showWarnOnThermalShutdown()
559 bootCount).apply(); in showWarnOnThermalShutdown()
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
DMtpDocumentsProvider.java123 final int bootCount = Settings.Global.getInt(mResolver, Settings.Global.BOOT_COUNT, -1); in onCreate() local
125 if (bootCount != -1 && bootCount != lastBootCount) { in onCreate()
126 mDatabase.setLastBootCount(bootCount); in onCreate()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccCardController.java141 int bootCount = Settings.Global.getInt( in isBootUp() local
145 if (bootCount == -1 || lastBootCount == -1 || bootCount != lastBootCount) { in isBootUp()
146 sp.edit().putInt(KEY_LAST_BOOT_COUNT, bootCount).apply(); in isBootUp()