/bootable/recovery/updater/ |
D | build_info.cpp | 84 std::string BuildInfo::GetProperty(const std::string_view key, in GetProperty() function in BuildInfo 111 GetProperty("ro.product.brand", "").c_str(), in GetProperty() 112 GetProperty("ro.product.name", "").c_str(), in GetProperty() 113 GetProperty("ro.product.device", "").c_str(), in GetProperty() 114 GetProperty("ro.build.version.release", "").c_str(), in GetProperty() 115 GetProperty("ro.build.id", "").c_str(), in GetProperty() 116 GetProperty("ro.build.version.incremental", "").c_str(), in GetProperty() 117 GetProperty("ro.build.type", "").c_str(), in GetProperty() 118 GetProperty("ro.build.tags", "").c_str()); in GetProperty()
|
D | simulator_runtime.cpp | 38 std::string SimulatorRuntime::GetProperty(const std::string_view key, in GetProperty() function in SimulatorRuntime 40 return source_->GetProperty(key, default_value); in GetProperty()
|
D | updater_runtime.cpp | 38 std::string UpdaterRuntime::GetProperty(const std::string_view key, in GetProperty() function in UpdaterRuntime 40 return android::base::GetProperty(std::string(key), std::string(default_value)); in GetProperty()
|
D | install.cpp | 540 std::string value = updater_runtime->GetProperty(key, ""); in GetPropFn()
|
/bootable/recovery/fastboot/ |
D | fastboot.cpp | 43 title_lines.push_back("Product name - " + android::base::GetProperty("ro.product.device", "")); in StartFastboot() 44 title_lines.push_back("Bootloader version - " + android::base::GetProperty("ro.bootloader", "")); in StartFastboot() 46 android::base::GetProperty("ro.build.expect.baseband", "")); in StartFastboot() 47 title_lines.push_back("Serial number - " + android::base::GetProperty("ro.serialno", "")); in StartFastboot() 49 ((android::base::GetProperty("ro.secure", "") == "1") ? "yes" : "no")); in StartFastboot() 50 title_lines.push_back("HW version - " + android::base::GetProperty("ro.revision", "")); in StartFastboot()
|
/bootable/recovery/tests/unit/ |
D | install_test.cpp | 174 std::string device = android::base::GetProperty("ro.product.device", ""); in VerifyAbUpdateCommands() 176 std::string timestamp = android::base::GetProperty("ro.build.date.utc", ""); in VerifyAbUpdateCommands() 225 std::string device = android::base::GetProperty("ro.product.device", ""); in TEST() 227 std::string timestamp = android::base::GetProperty("ro.build.date.utc", ""); in TEST() 252 std::string serialno = android::base::GetProperty("ro.serialno", ""); in TEST() 299 std::string device = android::base::GetProperty("ro.product.device", ""); in TEST() 344 std::string device = android::base::GetProperty("ro.product.device", ""); in TEST() 366 std::string serialno = android::base::GetProperty("ro.serialno", ""); in TEST() 379 std::string device = android::base::GetProperty("ro.product.device", ""); in TEST() 382 std::string serialno = android::base::GetProperty("ro.serialno", ""); in TEST() [all …]
|
D | uncrypt_test.cpp | 48 std::string setup_bcb = android::base::GetProperty(INIT_SVC_SETUP_BCB, ""); in StopService() 49 std::string clear_bcb = android::base::GetProperty(INIT_SVC_CLEAR_BCB, ""); in StopService() 50 std::string uncrypt = android::base::GetProperty(INIT_SVC_UNCRYPT, ""); in StopService()
|
D | update_verifier_test.cpp | 37 std::string verity_mode = android::base::GetProperty("ro.boot.veritymode", ""); in SetUp() 47 fingerprint_ = android::base::GetProperty(property_id_, ""); in SetUp()
|
D | updater_test.cpp | 238 expect(android::base::GetProperty("ro.product.device", "").c_str(), in TEST_F() 242 expect(android::base::GetProperty("ro.build.fingerprint", "").c_str(), in TEST_F()
|
/bootable/recovery/update_verifier/ |
D | update_verifier_main.cpp | 27 std::string s = android::base::GetProperty("ro.boot.slot_suffix", ""); in main()
|
D | update_verifier.cpp | 87 property_reader_([](const std::string& id) { return android::base::GetProperty(id, ""); }) {} in UpdateVerifier() 121 } else if (!android::base::GetProperty("ro.boot.avb_version", "").empty()) { in FindDmPartitions() 325 std::string verity_mode = android::base::GetProperty("ro.boot.veritymode", ""); in update_verifier()
|
/bootable/recovery/updater/include/updater/ |
D | build_info.h | 49 std::string GetProperty(const std::string_view key, const std::string_view default_value) const;
|
D | updater_runtime.h | 38 std::string GetProperty(const std::string_view key,
|
D | simulator_runtime.h | 37 std::string GetProperty(const std::string_view key,
|
/bootable/recovery/edify/include/edify/ |
D | updater_runtime_interface.h | 36 virtual std::string GetProperty(const std::string_view key,
|
/bootable/recovery/recovery_utils/ |
D | parse_install_logs.cpp | 109 int type = (android::base::GetProperty("ro.build.type", "") == "user") ? 1 : 0; in ParseLastInstall()
|
/bootable/recovery/install/ |
D | install.cpp | 144 auto device_pre_build = android::base::GetProperty("ro.build.version.incremental", ""); in CheckAbSpecificMetadata() 152 auto device_fingerprint = android::base::GetProperty("ro.build.fingerprint", ""); in CheckAbSpecificMetadata() 200 auto device = android::base::GetProperty("ro.product.device", ""); in CheckPackageMetadata() 212 auto device_serial_no = android::base::GetProperty("ro.serialno", ""); in CheckPackageMetadata()
|
D | adb_install.cpp | 340 std::string usb_state = android::base::GetProperty("sys.usb.state", "none"); in ApplyFromAdb()
|
/bootable/recovery/ |
D | recovery.cpp | 321 bool is_non_ab = android::base::GetProperty("ro.boot.slot_suffix", "").empty(); in AskToReboot() 563 std::string bootreason = android::base::GetProperty("ro.boot.bootreason", ""); in bootreason_in_blacklist() 705 android::base::Split(android::base::GetProperty("ro.bootimage.build.fingerprint", ""), ":"); in start_recovery()
|
D | recovery_main.cpp | 73 return "orange" == android::base::GetProperty("ro.boot.verifiedbootstate", ""); in IsDeviceUnlocked() 473 std::string usb_state = android::base::GetProperty("sys.usb.state", "none"); in main()
|
/bootable/recovery/minui/ |
D | graphics.cpp | 346 std::string format = android::base::GetProperty("ro.minui.pixel_format", ""); in gr_init() 396 android::base::GetProperty("ro.minui.default_rotation", "ROTATION_NONE"); in gr_init()
|
/bootable/recovery/minadbd/ |
D | minadbd_services.cpp | 185 return android::base::GetProperty(key, ""); in RescueGetpropHostService()
|
/bootable/recovery/tests/unit/host/ |
D | update_simulator_test.cpp | 233 ASSERT_EQ(value, build_info.GetProperty(key, "")); in TEST_F()
|
/bootable/recovery/uncrypt/ |
D | uncrypt.cpp | 185 if (android::base::GetProperty("ro.crypto.state", "") == "encrypted") { in FindBlockDevice()
|