Home
last modified time | relevance | path

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

/aosp12/system/update_engine/
H A Dupdate_status_utils.cc78 KeyValueStore key_value_store; in UpdateEngineStatusToString() local
80 key_value_store.SetString(kLastCheckedTime, in UpdateEngineStatusToString()
82 key_value_store.SetString(kProgress, base::NumberToString(status.progress)); in UpdateEngineStatusToString()
83 key_value_store.SetString(kNewSize, in UpdateEngineStatusToString()
85 key_value_store.SetString(kCurrentOp, UpdateStatusToString(status.status)); in UpdateEngineStatusToString()
86 key_value_store.SetString(kNewVersion, status.new_version); in UpdateEngineStatusToString()
87 key_value_store.SetBoolean(kIsEnterpriseRollback, in UpdateEngineStatusToString()
89 key_value_store.SetBoolean(kIsInstall, status.is_install); in UpdateEngineStatusToString()
90 key_value_store.SetBoolean(kWillPowerwashAfterReboot, in UpdateEngineStatusToString()
93 return key_value_store.SaveToString(); in UpdateEngineStatusToString()
/aosp12/art/dex2oat/linker/
H A Doat_writer_test.cc436 SafeMap<std::string, std::string> key_value_store; in TEST_F() local
441 key_value_store, in TEST_F()
556 SafeMap<std::string, std::string> key_value_store; in TEST_F() local
560 key_value_store, in TEST_F()
625 SafeMap<std::string, std::string> key_value_store; in TestDexFileInput() local
634 key_value_store, in TestDexFileInput()
672 key_value_store, in TestDexFileInput()
754 SafeMap<std::string, std::string> key_value_store; in TestZipFileInput() local
763 key_value_store, in TestZipFileInput()
814 key_value_store, in TestZipFileInput()
[all …]
H A Dimage_test.h227 SafeMap<std::string, std::string> key_value_store; in DoCompile() local
228 key_value_store.Put(OatHeader::kBootClassPathKey, in DoCompile()
292 (i == 0u) ? &key_value_store : nullptr); in DoCompile()
H A Doat_writer.h171 SafeMap<std::string, std::string>* key_value_store);
304 size_t InitOatHeader(uint32_t num_dex_files, SafeMap<std::string, std::string>* key_value_store);
H A Doat_writer.cc715 SafeMap<std::string, std::string>* key_value_store) { in StartRoData() argument
724 primary_oat_file_ = (key_value_store != nullptr); in StartRoData()
728 key_value_store); in StartRoData()
2069 SafeMap<std::string, std::string>* key_value_store) { in InitOatHeader() argument
2078 key_value_store)); in InitOatHeader()
/aosp12/art/runtime/
H A Doat.cc441 void OatHeader::Flatten(const SafeMap<std::string, std::string>* key_value_store) { in Flatten() argument
443 if (key_value_store != nullptr) { in Flatten()
444 SafeMap<std::string, std::string>::const_iterator it = key_value_store->begin(); in Flatten()
445 SafeMap<std::string, std::string>::const_iterator end = key_value_store->end(); in Flatten()