Home
last modified time | relevance | path

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

/art/dex2oat/linker/
Doat_writer.cc438 oat_dex_files_.emplace_back(std::move(dex_file)); in AddDexFileSource()
476 if (oat_dex_files_.empty()) { in AddVdexDexFilesSource()
503 oat_dex_files_.emplace_back(std::move(dex_file)); in AddRawDexFileSource()
509 locations.reserve(oat_dex_files_.size()); in GetSourceLocations()
510 for (const OatDexFile& oat_dex_file : oat_dex_files_) { in GetSourceLocations()
532 size_vdex_checksums_ = oat_dex_files_.size() * sizeof(VdexFile::VdexChecksum); in WriteAndOpenDexFiles()
565 oat_size_ = InitOatHeader(dchecked_integral_cast<uint32_t>(oat_dex_files_.size()), in StartRoData()
649 CHECK_EQ(dex_files_->size(), oat_dex_files_.size()); in PrepareLayout()
818 for (const OatDexFile& oat_dex_file : writer_->oat_dex_files_) { in InitOatClassesMethodVisitor()
1967 for (OatDexFile& oat_dex_file : oat_dex_files_) { in InitClassOffsets()
[all …]
Doat_writer.h506 dchecked_vector<OatDexFile> oat_dex_files_; variable
/art/runtime/oat/
Doat_file.cc610 oat_dex_files_.Put(key, oat_dex_file); in Setup()
613 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1038 oat_dex_files_.Put(key, oat_dex_file); in Setup()
1040 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1799 oat_file->oat_dex_files_.Put(key, oat_dex_file); in Open()
1802 oat_file->oat_dex_files_.Put(canonical_key, oat_dex_file); in Open()
2126 auto primary_it = oat_dex_files_.find(key); in GetOatDexFile()
2127 if (primary_it != oat_dex_files_.end()) { in GetOatDexFile()
2143 auto canonical_it = oat_dex_files_.find(canonical_key); in GetOatDexFile()
2144 if (canonical_it != oat_dex_files_.end()) { in GetOatDexFile()
Doat_file.h490 Table oat_dex_files_; variable
/art/oatdump/
Doatdump.cc396 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
527 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
528 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
600 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
601 const DexFile* dex_file = OpenDexFile(oat_dex_files_[i], &error_msg); in Dump()
621 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
622 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
646 if (oat_dex_files_.size() != vdex_dex_files.size()) { in Dump()
648 << vdex_dex_files.size() << " vs " << oat_dex_files_.size() << '\n'; in Dump()
654 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
[all …]