Home
last modified time | relevance | path

Searched refs:oat_dex_files_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Doat_file.cc345 oat_dex_files_.Put(key, oat_dex_file); in Setup()
348 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
383 auto primary_it = oat_dex_files_.find(key); in GetOatDexFile()
384 if (primary_it != oat_dex_files_.end()) { in GetOatDexFile()
400 auto canonical_it = oat_dex_files_.find(canonical_key); in GetOatDexFile()
401 if (canonical_it != oat_dex_files_.end()) { in GetOatDexFile()
Doat_file.h353 Table oat_dex_files_; variable
/art/compiler/
Doat_writer.cc128 CHECK_EQ(dex_files_->size(), oat_dex_files_.size()); in OatWriter()
136 STLDeleteElements(&oat_dex_files_); in ~OatWriter()
759 oat_dex_files_.push_back(oat_dex_file); in InitOatDexFiles()
774 oat_dex_files_[i]->dex_file_offset_ = offset; in InitDexFiles()
791 for (OatDexFile* oat_dex_file : oat_dex_files_) { in InitOatClasses()
974 for (size_t i = 0; i != oat_dex_files_.size(); ++i) { in WriteTables()
975 if (!oat_dex_files_[i]->Write(this, out, file_offset)) { in WriteTables()
980 for (size_t i = 0; i != oat_dex_files_.size(); ++i) { in WriteTables()
981 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_; in WriteTables()
Doat_writer.h262 std::vector<OatDexFile*> oat_dex_files_; variable
/art/oatdump/
Doatdump.cc144 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
249 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
250 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
278 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in GetQuickOatCode()
279 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in GetQuickOatCode()
307 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in AddAllOffsets()
308 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in AddAllOffsets()
957 const std::vector<const OatFile::OatDexFile*> oat_dex_files_; member in art::OatDumper