Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/utils/
H A 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()
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
H A DAppUtils.java112 String propVal = SystemProperties.get("settingsdebug.instant.packages"); in isInstant() local
113 if (propVal != null && !propVal.isEmpty() && info.packageName != null) { in isInstant()
114 String[] searchTerms = propVal.split(","); in isInstant()
/aosp12/packages/services/Car/car-lib/src/android/car/hardware/property/
H A DCarPropertyManager.java709 CarPropertyValue<E> propVal = mService.getProperty(propId, areaId); in getProperty() local
710 if (propVal != null && propVal.getValue() != null) { in getProperty()
711 Class<?> actualClass = propVal.getValue().getClass(); in getProperty()
717 return propVal; in getProperty()
777 CarPropertyValue<E> propVal = mService.getProperty(propId, areaId); in getProperty() local
778 return propVal; in getProperty()
/aosp12/packages/services/Car/service/src/com/android/car/hal/
H A DPropertyHalService.java434 CarPropertyValue<?> propVal; in onHalEvents() local
443 propVal = toMixedCarPropertyValue(v, mgrPropId, containBooleanType, in onHalEvents()
446 propVal = toCarPropertyValue(v, mgrPropId); in onHalEvents()
449 CarPropertyEvent.PROPERTY_EVENT_PROPERTY_CHANGE, propVal); in onHalEvents()
/aosp12/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_btservice_AdapterService.cpp114 ScopedLocalRef<jbyteArray> propVal( in get_properties() local
116 if (!propVal.get()) { in get_properties()
121 callbackEnv->SetByteArrayRegion(propVal.get(), 0, properties[i].len, in get_properties()
123 callbackEnv->SetObjectArrayElement(*props, i, propVal.get()); in get_properties()
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java7515 String propVal = null; in getTelephonyProperty() local
7520 propVal = values[phoneId]; in getTelephonyProperty()
7523 return propVal == null ? defaultVal : propVal; in getTelephonyProperty()
7545 String propVal = SystemProperties.get(property); in getTelephonyProperty() local
7546 return TextUtils.isEmpty(propVal) ? defaultVal : propVal; in getTelephonyProperty()