Home
last modified time | relevance | path

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

/art/compiler/
Doat_writer.cc362 oat_dex_files_.emplace_back(location, in AddDexFileSource()
398 oat_dex_files_.emplace_back(full_location, in AddZippedDexFilesSource()
428 oat_dex_files_.emplace_back(full_location, in AddVdexDexFilesSource()
431 oat_dex_files_.back().dex_file_location_checksum_ = vdex_file.GetLocationChecksum(i); in AddVdexDexFilesSource()
439 if (oat_dex_files_.empty()) { in AddVdexDexFilesSource()
467 oat_dex_files_.emplace_back(location, DexFileSource(data.data()), create_type_lookup_table); in AddRawDexFileSource()
468 oat_dex_files_.back().dex_file_location_checksum_ = location_checksum; in AddRawDexFileSource()
474 locations.reserve(oat_dex_files_.size()); in GetSourceLocations()
475 for (const OatDexFile& oat_dex_file : oat_dex_files_) { in GetSourceLocations()
504 vdex_size_ = sizeof(VdexFile::Header) + oat_dex_files_.size() * sizeof(VdexFile::VdexChecksum); in WriteAndOpenDexFiles()
[all …]
Doat_writer.h396 dchecked_vector<OatDexFile> oat_dex_files_; variable
/art/runtime/
Doat_file.cc578 oat_dex_files_.Put(key, oat_dex_file); in Setup()
581 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1226 auto primary_it = oat_dex_files_.find(key); in GetOatDexFile()
1227 if (primary_it != oat_dex_files_.end()) { in GetOatDexFile()
1243 auto canonical_it = oat_dex_files_.find(canonical_key); in GetOatDexFile()
1244 if (canonical_it != oat_dex_files_.end()) { in GetOatDexFile()
Doat_file.h347 Table oat_dex_files_; variable
/art/oatdump/
Doatdump.cc347 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
472 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
473 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
498 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
499 const DexFile* dex_file = OpenDexFile(oat_dex_files_[i], &error_msg); in Dump()
515 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
516 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
560 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in GetQuickOatCode()
561 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in GetQuickOatCode()
738 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in AddAllOffsets()
[all …]