Home
last modified time | relevance | path

Searched refs:dex_file_oat_index_map_ (Results 1 – 3 of 3) sorted by relevance

/art/dex2oat/linker/
Dimage_writer.cc1009 dex_file_oat_index_map_.find(dex_cache->GetDexFile()) == dex_file_oat_index_map_.end(); in PruneImageClassInternal()
1174 return dex_file_oat_index_map_.find(obj->AsDexCache()->GetDexFile()) == in PruneNonImageClasses()
1175 dex_file_oat_index_map_.end(); in PruneNonImageClasses()
1240 for (auto& pair : dex_file_oat_index_map_) { in CollectDexCaches()
1896 auto it = image_writer_->dex_file_oat_index_map_.find(dex_file); in ProcessDexFileObjects()
1897 DCHECK(it != image_writer_->dex_file_oat_index_map_.end()) << dex_file->GetLocation(); in ProcessDexFileObjects()
1958 auto it = image_writer->dex_file_oat_index_map_.find(dex_file); in ProcessInterns()
1959 DCHECK(it != image_writer->dex_file_oat_index_map_.end()) << dex_file->GetLocation(); in ProcessInterns()
3403 auto it = dex_file_oat_index_map_.find(dex_file); in GetOatIndexForDexFile()
3404 DCHECK(it != dex_file_oat_index_map_.end()) << dex_file->GetLocation(); in GetOatIndexForDexFile()
[all …]
Dimage_writer.h682 const HashMap<const DexFile*, size_t>& dex_file_oat_index_map_; variable
/art/dex2oat/
Ddex2oat.cc1467 dex_file_oat_index_map_.insert(std::make_pair(dex_file.get(), i)); in Setup()
2075 dex_file_oat_index_map_, in WriteOutputFiles()
2967 HashMap<const DexFile*, size_t> dex_file_oat_index_map_; member in art::Dex2Oat