Home
last modified time | relevance | path

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

/art/compiler/
Doat_writer.cc334 oat_dex_files_.emplace_back(location, in AddDexFileSource()
370 oat_dex_files_.emplace_back(full_location, in AddZippedDexFilesSource()
402 oat_dex_files_.emplace_back(location, DexFileSource(data.data()), create_type_lookup_table); in AddRawDexFileSource()
403 oat_dex_files_.back().dex_file_location_checksum_ = location_checksum; in AddRawDexFileSource()
409 locations.reserve(oat_dex_files_.size()); in GetSourceLocations()
410 for (const OatDexFile& oat_dex_file : oat_dex_files_) { in GetSourceLocations()
429 dchecked_integral_cast<uint32_t>(oat_dex_files_.size()), in WriteAndOpenDexFiles()
440 for (OatDexFile& oat_dex_file : oat_dex_files_) { in WriteAndOpenDexFiles()
445 for (OatDexFile& oat_dex_file : oat_dex_files_) { in WriteAndOpenDexFiles()
458 if (!oat_dex_files_.empty()) { in WriteAndOpenDexFiles()
[all …]
Doat_writer.h320 dchecked_vector<OatDexFile> oat_dex_files_; variable
/art/runtime/
Doat_file.cc471 oat_dex_files_.Put(key, oat_dex_file); in Setup()
474 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1088 auto primary_it = oat_dex_files_.find(key); in GetOatDexFile()
1089 if (primary_it != oat_dex_files_.end()) { in GetOatDexFile()
1105 auto canonical_it = oat_dex_files_.find(canonical_key); in GetOatDexFile()
1106 if (canonical_it != oat_dex_files_.end()) { in GetOatDexFile()
Doat_file.h305 Table oat_dex_files_; variable
/art/oatdump/
Doatdump.cc331 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
451 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
452 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
490 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in GetQuickOatCode()
491 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in GetQuickOatCode()
519 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in AddAllOffsets()
520 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in AddAllOffsets()
1260 const std::vector<const OatFile::OatDexFile*> oat_dex_files_; member in art::OatDumper