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.cc1069 dex_file_oat_index_map_.find(dex_cache->GetDexFile()) == dex_file_oat_index_map_.end(); in PruneImageClassInternal()
1213 return dex_file_oat_index_map_.find(obj->AsDexCache()->GetDexFile()) == in PruneNonImageClasses()
1214 dex_file_oat_index_map_.end(); in PruneNonImageClasses()
1321 dex_cache_records.reserve(dex_file_oat_index_map_.size()); in CreateImageRoots()
1333 auto it = dex_file_oat_index_map_.find(dex_file); in CreateImageRoots()
1334 if (it != dex_file_oat_index_map_.end()) { in CreateImageRoots()
2003 auto it = image_writer_->dex_file_oat_index_map_.find(dex_file); in ProcessDexFileObjects()
2004 DCHECK(it != image_writer_->dex_file_oat_index_map_.end()) << dex_file->GetLocation(); in ProcessDexFileObjects()
2085 auto it = image_writer->dex_file_oat_index_map_.find(dex_file); in ProcessInterns()
2086 DCHECK(it != image_writer->dex_file_oat_index_map_.end()) << dex_file->GetLocation(); in ProcessInterns()
[all …]
Dimage_writer.h699 const HashMap<const DexFile*, size_t>& dex_file_oat_index_map_; variable
/art/dex2oat/
Ddex2oat.cc1502 dex_file_oat_index_map_.insert(std::make_pair(dex_file.get(), i)); in Setup()
2082 dex_file_oat_index_map_, in WriteOutputFiles()
2979 HashMap<const DexFile*, size_t> dex_file_oat_index_map_; member in art::Dex2Oat