Home
last modified time | relevance | path

Searched refs:new_version (Results 1 – 25 of 25) sorted by relevance

/aosp12/system/update_engine/aosp/
H A Dhardware_android.cc68 const std::string& new_version) { in IsTimestampNewerLogged() argument
69 auto error_code = utils::IsTimestampNewer(old_version, new_version); in IsTimestampNewerLogged()
74 << " Update timestamp: " << new_version; in IsTimestampNewerLogged()
318 const string& partition_name, const string& new_version) const { in IsPartitionUpdateValid()
322 IsTimestampNewerLogged(partition_name, old_version, new_version); in IsPartitionUpdateValid()
345 IsTimestampNewerLogged(partition_name, old_version, new_version); in IsPartitionUpdateValid()
H A Dhardware_android.h66 const std::string& new_version) const override;
/aosp12/packages/modules/SdkExtensions/gen_sdk/
H A Dgen_sdk.py110 def NewSdk(database, new_version, modules): argument
120 new_requirements[module] = SdkVersion(version=new_version)
124 extension_version = ExtensionVersion(version=new_version, requirements=module_requirements)
128 print('Created a new extension SDK level %d with modules %s' % (new_version, module_names))
/aosp12/system/update_engine/cros/
H A Domaha_response_handler_action.cc201 base::Version new_version(response.version); in PerformAction() local
204 if (!new_version.IsValid()) { in PerformAction()
212 } else if (new_version < current_version) { in PerformAction()
H A Dhardware_chromeos.h70 const std::string& new_version) const override;
H A Ddbus_service.cc45 out_status->set_new_version(ue_status.new_version); in ConvertToStatusResult()
H A Dhardware_chromeos.cc361 const std::string& partition_name, const std::string& new_version) const { in IsPartitionUpdateValid()
H A Dupdate_attempter_unittest.cc1699 EXPECT_EQ(attempter_.install_plan_->version, status.new_version); in TEST_F()
1719 EXPECT_EQ(response_action.install_plan_.version, status.new_version); in TEST_F()
H A Dupdate_attempter.cc1456 out_status->new_version = new_version_; in GetStatus()
H A Domaha_request_action_unittest.cc962 string new_version = fake_update_response_.version; in TEST_F() local
966 fake_prefs_->SetString(kPrefsUpdateOverCellularTargetVersion, new_version); in TEST_F()
/aosp12/system/update_engine/common/
H A Dfake_hardware.h214 const std::string& new_version) const override { in IsPartitionUpdateValid() argument
216 return utils::IsTimestampNewer(old_version, new_version); in IsPartitionUpdateValid()
H A Dhardware_interface.h162 const std::string& new_version) const = 0;
H A Dutils.cc1022 const std::string& new_version) { in IsTimestampNewer() argument
1023 if (old_version.empty() || new_version.empty()) { in IsTimestampNewer()
1026 << old_version << " New: " << new_version; in IsTimestampNewer()
1034 if (!ParseTimestamp(new_version, &new_ver)) { in IsTimestampNewer()
H A Dutils.h358 const std::string& new_version);
/aosp12/system/update_engine/
H A Dupdate_status_utils_unittest.cc35 .new_version = "12345.0.0", in TEST()
H A Dupdate_status_utils.cc86 key_value_store.SetString(kNewVersion, status.new_version); in UpdateEngineStatusToString()
/aosp12/system/update_engine/client_library/
H A Dclient_dbus.cc53 out_status->new_version = status.new_version(); in ConvertToUpdateEngineStatus()
/aosp12/system/update_engine/client_library/include/update_engine/
H A Dupdate_status.h86 std::string new_version; member
/aosp12/system/update_engine/update_manager/
H A Dreal_updater_provider.cc76 inline const string& new_version() { in new_version() function in chromeos_update_manager::GetStatusHelper
77 return update_engine_status_.new_version; in new_version()
194 return new string(raw.new_version()); in GetValue()
H A Dreal_updater_provider_unittest.cc85 ACTION_P(ActionSetUpdateEngineStatusNewVersion, new_version) { in ACTION_P() argument
86 arg0->new_version = new_version; in ACTION_P()
/aosp12/system/security/keystore2/src/database/
H A Dversioning.rs66 pub fn update_version(tx: &Transaction, new_version: u32) -> Result<()> { in update_version()
68 .execute("UPDATE persistent.version SET version = ? WHERE id = 0;", params![new_version]) in update_version()
/aosp12/system/apex/apexd/
H A Dapex_file_repository.cpp158 const auto new_version = apex_file->GetManifest().version(); in AddDataApex() local
160 bool prioritize_higher_version = new_version > existing_version; in AddDataApex()
H A Dapexd.cpp1297 uint64_t new_version = manifest.version(); in ActivatePackageImpl() local
1306 new_version) { in ActivatePackageImpl()
1311 new_version) { in ActivatePackageImpl()
/aosp12/frameworks/base/tools/aapt2/optimize/
H A DMultiApkGenerator.cpp311 uint64_t new_version = (major | version_code_value->value.data) + artifact.version; in UpdateManifest() local
312 SetLongVersionCode(manifest_el, new_version); in UpdateManifest()
/aosp12/packages/modules/StatsD/statsd/src/
H A Dstats_log.proto323 optional int64 new_version = 5; field