HomeSort by relevance Sort by last modified time
    Searched refs:key_value_store (Results 1 - 6 of 6) sorted by null

  /art/compiler/
oat_test.cc 118 SafeMap<std::string, std::string> key_value_store; local
119 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
126 &key_value_store);
image_test.cc 82 SafeMap<std::string, std::string> key_value_store; local
84 &key_value_store);
oat_writer.h 85 SafeMap<std::string, std::string>* key_value_store);
oat_writer.cc 56 SafeMap<std::string, std::string>* key_value_store)
62 key_value_store_(key_value_store),
95 CHECK(key_value_store != nullptr);
    [all...]
  /art/runtime/
oat.cc 473 void OatHeader::Flatten(const SafeMap<std::string, std::string>* key_value_store) {
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/
dex2oat.cc 358 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);
    [all...]

Completed in 108 milliseconds