Home
last modified time | relevance | path

Searched refs:GetProperty (Results 1 – 7 of 7) 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()
224 if (system_properties_.GetProperty(kAndroidDataPathPropertyName) == nullptr) { in ReadEnvironment()
227 android_data_ = *system_properties_.GetProperty(kAndroidDataPathPropertyName); in ReadEnvironment()
229 if (system_properties_.GetProperty(kAndroidRootPathPropertyName) == nullptr) { in ReadEnvironment()
232 android_root_ = *system_properties_.GetProperty(kAndroidRootPathPropertyName); in ReadEnvironment()
234 if (system_properties_.GetProperty(kBootClassPathPropertyName) == nullptr) { in ReadEnvironment()
237 boot_classpath_ = *system_properties_.GetProperty(kBootClassPathPropertyName); in ReadEnvironment()
239 if (system_properties_.GetProperty(ASEC_MOUNTPOINT_ENV_NAME) == nullptr) { in ReadEnvironment()
242 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.cpp427 std::string file_prefix = android::base::GetProperty("ro.radio.log_prefix", ""); in DumpModemLogs()
435 std::string radio_bugreport_dir = android::base::GetProperty("ro.radio.log_loc", ""); in DumpModemLogs()
656 build = android::base::GetProperty("ro.build.display.id", "(unknown)"); in PrintHeader()
657 fingerprint = android::base::GetProperty("ro.build.fingerprint", "(unknown)"); in PrintHeader()
658 radio = android::base::GetProperty("gsm.version.baseband", "(unknown)"); in PrintHeader()
659 bootloader = android::base::GetProperty("ro.bootloader", "(unknown)"); in PrintHeader()
660 network = android::base::GetProperty("gsm.operator.alpha", "(unknown)"); in PrintHeader()
880 std::string anr_traces_path = android::base::GetProperty("dalvik.vm.stack-trace-file", ""); in AddAnrTraceFiles()
1439 ds.extra_options_ = android::base::GetProperty(PROPERTY_EXTRA_OPTIONS, ""); in main()
1463 ds.notification_title = android::base::GetProperty(PROPERTY_EXTRA_TITLE, ""); in main()
[all …]
DDumpstateUtil.cpp166 build_type_ = android::base::GetProperty("ro.build.type", "user"); in IsUserBuild()
Dutils.cpp115 static Dumpstate singleton_(android::base::GetProperty("dumpstate.version", VERSION_CURRENT)); in GetInstance()
862 std::string traces_path = android::base::GetProperty("dalvik.vm.stack-trace-file", ""); in dump_traces()
/frameworks/native/cmds/dumpstate/tests/
Ddumpstate_test.cpp141 SetBuildType(android::base::GetProperty("ro.build.type", "(unknown)")); in SetUp()
/frameworks/base/cmds/bootanimation/
DBootAnimation.cpp115 std::string powerCtl = android::base::GetProperty("sys.powerctl", ""); in BootAnimation()