Searched defs:key_value_store (Results 1 - 5 of 5) sorted by relevance

/art/compiler/
H A Dimage_test.cc82 SafeMap<std::string, std::string> key_value_store; local
84 &key_value_store);
H A Doat_test.cc118 SafeMap<std::string, std::string> key_value_store; local
119 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
126 &key_value_store);
H A Doat_writer.cc56 SafeMap<std::string, std::string>* key_value_store)
62 key_value_store_(key_value_store),
95 CHECK(key_value_store != nullptr);
50 OatWriter(const std::vector<const DexFile*>& dex_files, uint32_t image_file_location_oat_checksum, uintptr_t image_file_location_oat_begin, int32_t image_patch_delta, const CompilerDriver* compiler, TimingLogger* timings, SafeMap<std::string, std::string>* key_value_store) argument
/art/runtime/
H A Doat.cc473 void OatHeader::Flatten(const SafeMap<std::string, std::string>* key_value_store) { argument
475 if (key_value_store != nullptr) {
476 SafeMap<std::string, std::string>::const_iterator it = key_value_store->begin();
477 SafeMap<std::string, std::string>::const_iterator end = key_value_store->end();
/art/dex2oat/
H A Ddex2oat.cc358 SafeMap<std::string, std::string>* key_value_store) {
359 CHECK(key_value_store != nullptr);
413 key_value_store->Put(OatHeader::kImageLocationKey, image_file_location);
421 key_value_store);
1381 std::unique_ptr<SafeMap<std::string, std::string> > key_value_store(
1392 key_value_store->Put(OatHeader::kDex2OatCmdLineKey, oss.str());
1395 key_value_store->Put(OatHeader::kDex2OatHostKey, oss.str());
1411 key_value_store.get()));
344 CreateOatFile(const std::string& boot_image_option, const std::string& android_root, bool is_host, const std::vector<const DexFile*>& dex_files, File* oat_file, const std::string& oat_location, const std::string& bitcode_filename, bool image, std::unique_ptr<std::set<std::string>>& image_classes, bool dump_stats, bool dump_passes, TimingLogger& timings, CumulativeLogger& compiler_phases_timings, std::string profile_file, SafeMap<std::string, std::string>* key_value_store) argument

Completed in 8827 milliseconds