Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Dotapreopt.cpp142 int GetProperty(const char* key, char* value, const char* default_value) const { in GetProperty() function in android::installd::OTAPreoptService
143 const std::string* prop_value = system_properties_.GetProperty(key); in GetProperty()
225 if (system_properties_.GetProperty(kAndroidDataPathPropertyName) == nullptr) { in ReadEnvironment()
228 android_data_ = *system_properties_.GetProperty(kAndroidDataPathPropertyName); in ReadEnvironment()
230 if (system_properties_.GetProperty(kAndroidRootPathPropertyName) == nullptr) { in ReadEnvironment()
233 android_root_ = *system_properties_.GetProperty(kAndroidRootPathPropertyName); in ReadEnvironment()
235 if (system_properties_.GetProperty(kBootClassPathPropertyName) == nullptr) { in ReadEnvironment()
238 boot_classpath_ = *system_properties_.GetProperty(kBootClassPathPropertyName); in ReadEnvironment()
240 if (system_properties_.GetProperty(ASEC_MOUNTPOINT_ENV_NAME) == nullptr) { in ReadEnvironment()
243 asec_mountpoint_ = *system_properties_.GetProperty(ASEC_MOUNTPOINT_ENV_NAME); in ReadEnvironment()
[all …]
Dsystem_properties.h51 const std::string* GetProperty(const std::string& key) const { in GetProperty() function
/frameworks/native/cmds/dumpstate/
Ddumpstate.cpp655 build = android::base::GetProperty("ro.build.display.id", "(unknown)"); in PrintHeader()
656 fingerprint = android::base::GetProperty("ro.build.fingerprint", "(unknown)"); in PrintHeader()
657 radio = android::base::GetProperty("gsm.version.baseband", "(unknown)"); in PrintHeader()
658 bootloader = android::base::GetProperty("ro.bootloader", "(unknown)"); in PrintHeader()
659 network = android::base::GetProperty("gsm.operator.alpha", "(unknown)"); in PrintHeader()
958 anr_traces_dir = android::base::GetProperty("dalvik.vm.stack-trace-dir", ""); in AddAnrTraceFiles()
960 anr_traces_file = android::base::GetProperty("dalvik.vm.stack-trace-file", ""); in AddAnrTraceFiles()
1568 ds.extra_options_ = android::base::GetProperty(PROPERTY_EXTRA_OPTIONS, ""); in main()
1592 ds.notification_title = android::base::GetProperty(PROPERTY_EXTRA_TITLE, ""); in main()
1597 ds.notification_description = android::base::GetProperty(PROPERTY_EXTRA_DESCRIPTION, ""); in main()
[all …]
DDumpstateUtil.cpp166 build_type_ = android::base::GetProperty("ro.build.type", "user"); in IsUserBuild()
Dutils.cpp118 static Dumpstate singleton_(android::base::GetProperty("dumpstate.version", VERSION_CURRENT)); in GetInstance()
866 const std::string traces_dir = android::base::GetProperty("dalvik.vm.stack-trace-dir", ""); in dump_traces()
871 const std::string traces_file = android::base::GetProperty("dalvik.vm.stack-trace-file", ""); in dump_traces()
/frameworks/base/cmds/bootanimation/
Dbootanimation_main.cpp78 if (!android::base::GetProperty(POWER_CTL_PROP_NAME, "").empty()) { in playSoundsAllowed()
DBootAnimation.cpp104 std::string powerCtl = android::base::GetProperty("sys.powerctl", ""); in BootAnimation()
/frameworks/ml/nn/common/
DUtils.cpp47 const std::string vLogSetting = android::base::GetProperty(kVLogPropKey, ""); in initVLogMask()
449 const std::string propStr = android::base::GetProperty(str, ""); in getProp()
/frameworks/native/cmds/atrace/
Datrace.cpp374 return !android::base::GetProperty(k_coreServicesProp, "").empty(); in isCategorySupported()
815 packageList += android::base::GetProperty(k_coreServicesProp, ""); in setUpTrace()
/frameworks/native/libs/vr/libvrflinger/
Ddisplay_service.cpp208 std::string file_path = base::GetProperty(property_name, ""); in OnGetConfigurationData()
/frameworks/native/libs/vr/libdvr/tests/
Ddvr_display_manager-test.cpp874 bool has_metric = !base::GetProperty(kDvrLensMetricsProperty, "").empty(); in TEST_F()
/frameworks/native/cmds/dumpstate/tests/
Ddumpstate_test.cpp141 SetBuildType(android::base::GetProperty("ro.build.type", "(unknown)")); in SetUp()