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 | 479 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/ |
D | dex2oat.cc | 369 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()
|