Lines Matching refs:key_value_store_
782 key_value_store_(nullptr), in Dex2Oat()
841 key_value_store_.release(); // NOLINT in ~Dex2Oat()
1112 key_value_store_.reset(new SafeMap<std::string, std::string>()); in ProcessOptions()
1199 key_value_store_->Put(OatHeader::kDex2OatCmdLineKey, oss.str()); in InsertCompileOptions()
1201 key_value_store_->Put( in InsertCompileOptions()
1204 key_value_store_->Put( in InsertCompileOptions()
1207 key_value_store_->Put(OatHeader::kCompilerFilter, in InsertCompileOptions()
1209 key_value_store_->Put(OatHeader::kConcurrentCopying, in InsertCompileOptions()
1813 key_value_store_->Put(OatHeader::kCompilationReasonKey, compilation_reason_); in Setup()
1819 key_value_store_->Put(OatHeader::kBootClassPathKey, android::base::Join(dex_locations_, ':')); in Setup()
1832 key_value_store_->Put(OatHeader::kBootClassPathKey, bcp_dependency); in Setup()
1836 key_value_store_->Put( in Setup()
1843 key_value_store_->Put(OatHeader::kBootClassPathKey, in Setup()
1846 key_value_store_->Put( in Setup()
1888 key_value_store_->Put(OatHeader::kClassPathKey, class_path_key); in Setup()
1905 (i == 0u) ? key_value_store_.get() : nullptr)) { in Setup()
2991 std::unique_ptr<SafeMap<std::string, std::string> > key_value_store_; member in art::Dex2Oat