Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerServiceCompilerMapping.java72 String sysPropValue = SystemProperties.get(getSystemPropertyName(reason)); in getAndCheckValidity() local
73 if (sysPropValue == null || sysPropValue.isEmpty() in getAndCheckValidity()
74 || !(sysPropValue.equals(DexoptParams.COMPILER_FILTER_NOOP) in getAndCheckValidity()
75 || DexFile.isValidCompilerFilter(sysPropValue))) { in getAndCheckValidity()
76 throw new IllegalStateException("Value \"" + sysPropValue +"\" not valid " in getAndCheckValidity()
78 } else if (!isFilterAllowedForReason(reason, sysPropValue)) { in getAndCheckValidity()
79 throw new IllegalStateException("Value \"" + sysPropValue +"\" not allowed " in getAndCheckValidity()
83 return sysPropValue; in getAndCheckValidity()