Home
last modified time | relevance | path

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

/frameworks/av/media/utils/
DLimitProcessMemory.cpp56 int64_t propVal = property_get_int64(property, maxMem); in limitProcessMemory() local
57 if (propVal > 0 && uint64_t(propVal) <= SIZE_MAX) { in limitProcessMemory()
58 maxMem = propVal; in limitProcessMemory()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
DAppUtils.java117 String propVal = SystemProperties.get("settingsdebug.instant.packages"); in isInstant() local
118 if (propVal != null && !propVal.isEmpty() && info.packageName != null) { in isInstant()
119 String[] searchTerms = propVal.split(","); in isInstant()
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java8613 String propVal = null; in getTelephonyProperty() local
8618 propVal = values[phoneId]; in getTelephonyProperty()
8621 return propVal == null ? defaultVal : propVal; in getTelephonyProperty()
8643 String propVal = SystemProperties.get(property); in getTelephonyProperty() local
8644 return TextUtils.isEmpty(propVal) ? defaultVal : propVal; in getTelephonyProperty()