Searched defs:oat_dex_file (Results 1 - 9 of 9) sorted by relevance

/art/test/116-nodex2oat/
H A Dnodex2oat.cc31 const OatFile::OatDexFile* oat_dex_file = local
33 return oat_dex_file != nullptr;
/art/test/117-nopatchoat/
H A Dnopatchoat.cc31 const OatFile::OatDexFile* oat_dex_file = local
33 return oat_dex_file != nullptr && oat_dex_file->GetOatFile()->IsExecutable();
/art/test/118-noimage-dex2oat/
H A Dnoimage-dex2oat.cc31 const OatFile::OatDexFile* oat_dex_file = local
33 return oat_dex_file != nullptr;
/art/compiler/
H A Doat_test.cc150 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation().c_str(), local
152 ASSERT_TRUE(oat_dex_file != nullptr);
153 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
167 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
H A Doat_writer.cc749 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file); local
750 oat_dex_files_.push_back(oat_dex_file);
751 offset += oat_dex_file->SizeOf();
782 for (OatDexFile* oat_dex_file : oat_dex_files_) {
783 for (uint32_t& offset : oat_dex_file->methods_offsets_) {
788 oat_dex_file->UpdateChecksum(oat_header_);
/art/runtime/native/
H A Ddalvik_system_DexFile.cc304 const art::OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(filename, nullptr, local
306 if (oat_dex_file != nullptr) {
343 } else if (location_checksum == oat_dex_file->GetDexFileLocationChecksum()
/art/runtime/
H A Doat_file.cc328 OatDexFile* oat_dex_file = new OatDexFile(this, local
334 oat_dex_files_storage_.push_back(oat_dex_file);
337 StringPiece key(oat_dex_file->GetDexFileLocation());
338 oat_dex_files_.Put(key, oat_dex_file);
340 StringPiece canonical_key(oat_dex_file->GetCanonicalDexFileLocation());
341 oat_dex_files_.Put(canonical_key, oat_dex_file);
372 const OatFile::OatDexFile* oat_dex_file = nullptr; local
378 oat_dex_file = primary_it->second;
379 DCHECK(oat_dex_file != nullptr);
387 oat_dex_file
[all...]
H A Dclass_linker.cc699 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
702 if (oat_dex_file != nullptr) {
703 return oat_dex_file;
752 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(next_name, nullptr, false); local
754 if (oat_dex_file == nullptr) {
768 success = next_location_checksum == oat_dex_file->GetDexFileLocationChecksum();
772 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg);
785 << " OatDexFile::GetLocationChecksum()=" << oat_dex_file->GetDexFileLocationChecksum();
828 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFile(oat_location, dex_location, local
831 oat_dex_file !
1005 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
1123 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
1158 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, nullptr); local
1623 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location.c_str(), local
2323 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file); local
3623 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file); local
[all...]
/art/oatdump/
H A Doatdump.cc244 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
245 CHECK(oat_dex_file != nullptr);
246 if (!DumpOatDexFile(os, *oat_dex_file)) {
273 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
274 CHECK(oat_dex_file != nullptr);
276 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
278 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
285 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
301 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
302 CHECK(oat_dex_file !
354 DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) argument
[all...]

Completed in 169 milliseconds