Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
H A DAppUtils.java116 String propVal = SystemProperties.get("settingsdebug.instant.packages"); in isInstant() local
117 if (propVal != null && !propVal.isEmpty() && info.packageName != null) { in isInstant()
118 String[] searchTerms = propVal.split(","); in isInstant()
/aosp14/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java8204 String propVal = null; in getTelephonyProperty() local
8209 propVal = values[phoneId]; in getTelephonyProperty()
8212 return propVal == null ? defaultVal : propVal; in getTelephonyProperty()
8234 String propVal = SystemProperties.get(property); in getTelephonyProperty() local
8235 return TextUtils.isEmpty(propVal) ? defaultVal : propVal; in getTelephonyProperty()