Home | History | Annotate | Download | only in server

Lines Matching defs:SystemProperties

28 import android.os.SystemProperties;
75 if (SystemProperties.getBoolean(PROP_ENABLE_RESCUE, false)) {
94 if (SystemProperties.getBoolean(PROP_DISABLE_RESCUE, false)) {
137 return SystemProperties.getInt(PROP_RESCUE_LEVEL, LEVEL_NONE) == LEVEL_FACTORY_RESET;
146 SystemProperties.getInt(PROP_RESCUE_LEVEL, LEVEL_NONE) + 1,
148 SystemProperties.set(PROP_RESCUE_LEVEL, Integer.toString(level));
164 final int level = SystemProperties.getInt(PROP_RESCUE_LEVEL, LEVEL_NONE);
280 return SystemProperties.getInt(PROP_RESCUE_BOOT_COUNT, 0);
285 SystemProperties.set(PROP_RESCUE_BOOT_COUNT, Integer.toString(count));
290 return SystemProperties.getLong(PROP_RESCUE_BOOT_START, 0);
295 SystemProperties.set(PROP_RESCUE_BOOT_START, Long.toString(start));
342 if (SystemProperties.getBoolean(PROP_VIRTUAL_DEVICE, false)) {