Home
last modified time | relevance | path

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

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/
DRescuePartyTest.java145 SystemProperties.set(RescueParty.PROP_RESCUE_LEVEL, in setUp()
162 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testBootLoopDetectionWithExecutionForAllRescueLevels()
168 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testBootLoopDetectionWithExecutionForAllRescueLevels()
174 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testBootLoopDetectionWithExecutionForAllRescueLevels()
180 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testBootLoopDetectionWithExecutionForAllRescueLevels()
189 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testPersistentAppCrashDetectionWithExecutionForAllRescueLevels()
195 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testPersistentAppCrashDetectionWithExecutionForAllRescueLevels()
201 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testPersistentAppCrashDetectionWithExecutionForAllRescueLevels()
207 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testPersistentAppCrashDetectionWithExecutionForAllRescueLevels()
220 SystemProperties.getInt(RescueParty.PROP_RESCUE_LEVEL, RescueParty.LEVEL_NONE)); in testBootLoopDetectionWithWrongInterval()
[all …]
/frameworks/base/services/core/java/com/android/server/
DRescueParty.java62 static final String PROP_RESCUE_LEVEL = "sys.rescue_level"; field in RescueParty
159 return SystemProperties.getInt(PROP_RESCUE_LEVEL, LEVEL_NONE) == LEVEL_FACTORY_RESET; in isAttemptingFactoryReset()
199 SystemProperties.getInt(PROP_RESCUE_LEVEL, LEVEL_NONE) + 1, in incrementRescueLevel()
201 SystemProperties.set(PROP_RESCUE_LEVEL, Integer.toString(level)); in incrementRescueLevel()
209 final int level = SystemProperties.getInt(PROP_RESCUE_LEVEL, LEVEL_NONE); in executeRescueLevel()