Home
last modified time | relevance | path

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

/art/compiler/
Doat_test.cc118 SafeMap<std::string, std::string> key_value_store; in TEST_F() local
119 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art"); in TEST_F()
126 &key_value_store); in TEST_F()
Dimage_test.cc82 SafeMap<std::string, std::string> key_value_store; in TEST_F() local
84 &key_value_store); in TEST_F()
Doat_writer.h85 SafeMap<std::string, std::string>* key_value_store);
Doat_writer.cc56 SafeMap<std::string, std::string>* key_value_store) in OatWriter() argument
62 key_value_store_(key_value_store), in OatWriter()
95 CHECK(key_value_store != nullptr); in OatWriter()
/art/runtime/
Doat.cc479 void OatHeader::Flatten(const SafeMap<std::string, std::string>* key_value_store) { in Flatten() argument
481 if (key_value_store != nullptr) { in Flatten()
482 SafeMap<std::string, std::string>::const_iterator it = key_value_store->begin(); in Flatten()
483 SafeMap<std::string, std::string>::const_iterator end = key_value_store->end(); in Flatten()
/art/dex2oat/
Ddex2oat.cc369 SafeMap<std::string, std::string>* key_value_store) { in CreateOatFile() argument
370 CHECK(key_value_store != nullptr); in CreateOatFile()
426 key_value_store->Put(OatHeader::kImageLocationKey, image_file_location); in CreateOatFile()
434 key_value_store); in CreateOatFile()
1522 std::unique_ptr<SafeMap<std::string, std::string> > key_value_store( in dex2oat() local
1534 key_value_store->Put(OatHeader::kDex2OatCmdLineKey, oss.str()); in dex2oat()
1537 key_value_store->Put(OatHeader::kDex2OatHostKey, oss.str()); in dex2oat()
1538 key_value_store->Put(OatHeader::kPicKey, compile_pic ? "true" : "false"); in dex2oat()
1557 key_value_store.get())); in dex2oat()