Searched refs:key_value_store (Results 1 – 5 of 5) sorted by relevance
/art/dex2oat/linker/ |
D | oat_writer_test.cc | 105 SafeMap<std::string, std::string>& key_value_store, in WriteElf() argument 124 vdex_file, oat_file, oat_writer, key_value_store, verify, CopyOption::kOnlyIfCompressed); in WriteElf() 130 SafeMap<std::string, std::string>& key_value_store, in WriteElf() argument 145 return DoWriteElf(vdex_file, oat_file, oat_writer, key_value_store, verify, copy); in WriteElf() 152 SafeMap<std::string, std::string>& key_value_store, in WriteElf() argument 165 return DoWriteElf(vdex_file, oat_file, oat_writer, key_value_store, verify, copy); in WriteElf() 171 SafeMap<std::string, std::string>& key_value_store, in DoWriteElf() argument 202 if (!oat_writer.StartRoData(dex_files, oat_rodata, &key_value_store)) { in DoWriteElf() 436 SafeMap<std::string, std::string> key_value_store; in TEST_F() local 437 key_value_store.Put(OatHeader::kBootClassPathChecksumsKey, "testkey"); in TEST_F() [all …]
|
D | image_test.h | 227 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()
|
D | oat_writer.h | 171 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);
|
D | oat_writer.cc | 715 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()
|
/art/runtime/ |
D | oat.cc | 441 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()
|