Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerServiceCompilerMapping.java55 String sysPropValue = SystemProperties.get(getSystemPropertyName(reason)); in getAndCheckValidity() local
56 if (sysPropValue == null || sysPropValue.isEmpty() || in getAndCheckValidity()
57 !DexFile.isValidCompilerFilter(sysPropValue)) { in getAndCheckValidity()
58 throw new IllegalStateException("Value \"" + sysPropValue +"\" not valid " in getAndCheckValidity()
60 } else if (!isFilterAllowedForReason(reason, sysPropValue)) { in getAndCheckValidity()
61 throw new IllegalStateException("Value \"" + sysPropValue +"\" not allowed " in getAndCheckValidity()
65 return sysPropValue; in getAndCheckValidity()
DBackgroundDexOptService.java647 String sysPropValue = SystemProperties.get(sysPropKey); in getDowngradeUnusedAppsThresholdInMillis() local
648 if (sysPropValue == null || sysPropValue.isEmpty()) { in getDowngradeUnusedAppsThresholdInMillis()
652 return TimeUnit.DAYS.toMillis(Long.parseLong(sysPropValue)); in getDowngradeUnusedAppsThresholdInMillis()