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/118-noimage-dex2oat/
H A Dnoimage-dex2oat.cc31 const OatFile::OatDexFile* oat_dex_file = local
33 return oat_dex_file != nullptr;
/art/test/117-nopatchoat/
H A Dnopatchoat.cc32 const OatFile::OatDexFile* oat_dex_file = local
35 return oat_dex_file;
39 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); local
41 return oat_dex_file != nullptr && oat_dex_file->GetOatFile()->IsExecutable();
45 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls); local
47 if (oat_dex_file == nullptr) {
51 const OatFile* oat_file = oat_dex_file->GetOatFile();
/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.cc758 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file); local
759 oat_dex_files_.push_back(oat_dex_file);
760 offset += oat_dex_file->SizeOf();
791 for (OatDexFile* oat_dex_file : oat_dex_files_) {
792 for (uint32_t& offset : oat_dex_file->methods_offsets_) {
797 oat_dex_file->UpdateChecksum(oat_header_);
/art/runtime/native/
H A Ddalvik_system_DexFile.cc314 const art::OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(filename, nullptr, local
316 if (oat_dex_file != nullptr) {
353 } else if (location_checksum == oat_dex_file->GetDexFileLocationChecksum()
/art/runtime/
H A Doat_file.cc335 OatDexFile* oat_dex_file = new OatDexFile(this, local
341 oat_dex_files_storage_.push_back(oat_dex_file);
344 StringPiece key(oat_dex_file->GetDexFileLocation());
345 oat_dex_files_.Put(key, oat_dex_file);
347 StringPiece canonical_key(oat_dex_file->GetCanonicalDexFileLocation());
348 oat_dex_files_.Put(canonical_key, oat_dex_file);
379 const OatFile::OatDexFile* oat_dex_file = nullptr; local
385 oat_dex_file = primary_it->second;
386 DCHECK(oat_dex_file != nullptr);
394 oat_dex_file
[all...]
H A Dclass_linker.cc715 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
718 if (oat_dex_file != nullptr) {
719 return oat_dex_file;
768 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(next_name, nullptr, false); local
770 if (oat_dex_file == nullptr) {
784 success = next_location_checksum == oat_dex_file->GetDexFileLocationChecksum();
788 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg);
801 << " OatDexFile::GetLocationChecksum()=" << oat_dex_file->GetDexFileLocationChecksum();
844 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFile(oat_location, dex_location, local
847 oat_dex_file !
1021 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
1143 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local
1178 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, nullptr); local
1639 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location.c_str(), local
2350 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file); local
3672 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file); local
6011 const OatFile::OatDexFile* oat_dex_file = class_linker->FindOpenedOatDexFileForDexFile(dex_file); local
[all...]
/art/oatdump/
H A Doatdump.cc250 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
251 CHECK(oat_dex_file != nullptr);
252 if (!DumpOatDexFile(os, *oat_dex_file)) {
279 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
280 CHECK(oat_dex_file != nullptr);
282 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
284 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
292 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
308 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local
309 CHECK(oat_dex_file !
361 DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) argument
[all...]

Completed in 9115 milliseconds