Searched refs:key_value_store (Results 1 – 6 of 6) sorted by relevance
/art/compiler/ |
D | oat_test.cc | 118 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()
|
D | image_test.cc | 82 SafeMap<std::string, std::string> key_value_store; in TEST_F() local 84 &key_value_store); in TEST_F()
|
D | oat_writer.h | 85 SafeMap<std::string, std::string>* key_value_store);
|
D | oat_writer.cc | 56 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/ |
D | oat.cc | 473 void OatHeader::Flatten(const SafeMap<std::string, std::string>* key_value_store) { in Flatten() argument 475 if (key_value_store != nullptr) { in Flatten() 476 SafeMap<std::string, std::string>::const_iterator it = key_value_store->begin(); in Flatten() 477 SafeMap<std::string, std::string>::const_iterator end = key_value_store->end(); in Flatten()
|
/art/dex2oat/ |
D | dex2oat.cc | 358 SafeMap<std::string, std::string>* key_value_store) { in CreateOatFile() argument 359 CHECK(key_value_store != nullptr); in CreateOatFile() 413 key_value_store->Put(OatHeader::kImageLocationKey, image_file_location); in CreateOatFile() 421 key_value_store); in CreateOatFile() 1381 std::unique_ptr<SafeMap<std::string, std::string> > key_value_store( in dex2oat() local 1392 key_value_store->Put(OatHeader::kDex2OatCmdLineKey, oss.str()); in dex2oat() 1395 key_value_store->Put(OatHeader::kDex2OatHostKey, oss.str()); in dex2oat() 1411 key_value_store.get())); in dex2oat()
|