Home
last modified time | relevance | path

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

/art/dex2oat/linker/
Doat_writer.cc520 oat_dex_files_.emplace_back(/* OatDexFile */ in AddDexFileSource()
560 oat_dex_files_.emplace_back(/* OatDexFile */ in AddZippedDexFilesSource()
596 oat_dex_files_.emplace_back(/* OatDexFile */ in AddVdexDexFilesSource()
609 if (oat_dex_files_.empty()) { in AddVdexDexFilesSource()
637 oat_dex_files_.emplace_back(/* OatDexFile */ in AddRawDexFileSource()
648 locations.reserve(oat_dex_files_.size()); in GetSourceLocations()
649 for (const OatDexFile& oat_dex_file : oat_dex_files_) { in GetSourceLocations()
682 oat_dex_files_.size() * sizeof(VdexFile::VdexChecksum); in WriteAndOpenDexFiles()
683 oat_size_ = InitOatHeader(dchecked_integral_cast<uint32_t>(oat_dex_files_.size()), in WriteAndOpenDexFiles()
778 CHECK_EQ(dex_files_->size(), oat_dex_files_.size()); in PrepareLayout()
[all …]
Doat_writer.h471 dchecked_vector<OatDexFile> oat_dex_files_; variable
/art/oatdump/
Doatdump.cc387 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
510 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
511 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
560 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
561 const DexFile* dex_file = OpenDexFile(oat_dex_files_[i], &error_msg); in Dump()
579 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
580 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
604 if (oat_dex_files_.size() != vdex_dex_files.size()) { in Dump()
606 << vdex_dex_files.size() << " vs " << oat_dex_files_.size() << '\n'; in Dump()
612 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
[all …]
/art/runtime/
Doat_file.cc465 oat_dex_files_.Put(key, oat_dex_file); in Setup()
468 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
844 oat_dex_files_.Put(key, oat_dex_file); in Setup()
846 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1807 auto primary_it = oat_dex_files_.find(key); in GetOatDexFile()
1808 if (primary_it != oat_dex_files_.end()) { in GetOatDexFile()
1824 auto canonical_it = oat_dex_files_.find(canonical_key); in GetOatDexFile()
1825 if (canonical_it != oat_dex_files_.end()) { in GetOatDexFile()
Doat_file.h433 Table oat_dex_files_; variable