Home
last modified time | relevance | path

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

/aosp12/art/dex2oat/linker/
H A Doat_writer.cc562 oat_dex_files_.emplace_back(/* OatDexFile */ in AddDexFileSource()
585 oat_dex_files_.emplace_back(/* OatDexFile */ in AddDexFileSource()
623 oat_dex_files_.emplace_back(/* OatDexFile */ in AddVdexDexFilesSource()
635 if (oat_dex_files_.empty()) { in AddVdexDexFilesSource()
662 oat_dex_files_.emplace_back(/* OatDexFile */ in AddRawDexFileSource()
672 locations.reserve(oat_dex_files_.size()); in GetSourceLocations()
2880 OatDexFile* oat_dex_file = &oat_dex_files_[i]; in WriteIndexBssMappings()
2980 OatDexFile* oat_dex_file = &oat_dex_files_[i]; in WriteOatDexFiles()
3469 if (oat_dex_files_.empty()) { in OpenDexFiles()
3565 OatDexFile* oat_dex_file = &oat_dex_files_[i]; in InitializeTypeLookupTables()
[all …]
H A Doat_writer.h478 dchecked_vector<OatDexFile> oat_dex_files_; variable
/aosp12/art/oatdump/
H A Doatdump.cc385 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
512 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
513 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
597 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
598 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
622 if (oat_dex_files_.size() != vdex_dex_files.size()) { in Dump()
722 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in GetQuickOatCode()
723 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in GetQuickOatCode()
821 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in AddAllOffsets()
822 const OatDexFile* oat_dex_file = oat_dex_files_[i]; in AddAllOffsets()
[all …]
/aosp12/art/runtime/
H A Doat_file.cc557 oat_dex_files_.Put(key, oat_dex_file); in Setup()
560 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1004 oat_dex_files_.Put(key, oat_dex_file); in Setup()
1006 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1712 oat_file->oat_dex_files_.Put(key, oat_dex_file); in Open()
1715 oat_file->oat_dex_files_.Put(canonical_key, oat_dex_file); in Open()
2025 auto primary_it = oat_dex_files_.find(key); in GetOatDexFile()
2026 if (primary_it != oat_dex_files_.end()) { in GetOatDexFile()
2042 auto canonical_it = oat_dex_files_.find(canonical_key); in GetOatDexFile()
2043 if (canonical_it != oat_dex_files_.end()) { in GetOatDexFile()
H A Doat_file.h446 Table oat_dex_files_; variable