Home
last modified time | relevance | path

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

/art/runtime/
Doat_file.cc124 STLDeleteValues(&oat_dex_files_); in ~OatFile()
303 oat_dex_files_.Put(dex_file_location, new OatDexFile(this, in Setup()
329 Table::const_iterator it = oat_dex_files_.find(dex_location); in GetOatDexFile()
330 if (it != oat_dex_files_.end()) { in GetOatDexFile()
342 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) { in GetOatDexFile()
353 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) { in GetOatDexFiles()
Doat_file.h259 Table oat_dex_files_; variable
/art/compiler/
Doat_writer.cc83 CHECK_EQ(dex_files_->size(), oat_dex_files_.size()); in OatWriter()
89 STLDeleteElements(&oat_dex_files_); in ~OatWriter()
111 oat_dex_files_.push_back(oat_dex_file); in InitOatDexFiles()
126 oat_dex_files_[i]->dex_file_offset_ = offset; in InitDexFiles()
142 oat_dex_files_[i]->methods_offsets_[class_def_index] = offset; in InitOatClasses()
168 oat_dex_files_[i]->UpdateChecksum(*oat_header_); in InitOatClasses()
510 for (size_t i = 0; i != oat_dex_files_.size(); ++i) { in WriteTables()
511 if (!oat_dex_files_[i]->Write(this, out, file_offset)) { in WriteTables()
516 for (size_t i = 0; i != oat_dex_files_.size(); ++i) { in WriteTables()
517 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_; in WriteTables()
[all …]
Doat_writer.h182 std::vector<OatDexFile*> oat_dex_files_; variable
/art/oatdump/
Doatdump.cc102 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
147 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in Dump()
148 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in Dump()
174 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in GetOatCode()
175 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in GetOatCode()
199 for (size_t i = 0; i < oat_dex_files_.size(); i++) { in AddAllOffsets()
200 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in AddAllOffsets()
658 std::vector<const OatFile::OatDexFile*> oat_dex_files_; member in art::OatDumper