Home
last modified time | relevance | path

Searched refs:GetOatDexFile (Results 1 – 16 of 16) sorted by relevance

/art/runtime/
Dclass_table.cc148 if (dex_file != nullptr && dex_file->GetOatDexFile() != nullptr) { in InsertStrongRoot()
149 const OatFile* oat_file = dex_file->GetOatDexFile()->GetOatFile(); in InsertStrongRoot()
Doat_file_assistant.cc285 const OatDexFile* oat_dex_file = oat_file.GetOatDexFile( in LoadDexFiles()
302 oat_dex_file = oat_file.GetOatDexFile(multidex_dex_location.c_str(), nullptr); in LoadDexFiles()
387 const OatDexFile* oat_dex_file = file.GetOatDexFile(dex.c_str(), nullptr); in DexChecksumUpToDate()
Doat_file_assistant_test.cc1280 if (dex_files[0]->GetOatDexFile() != nullptr) { in Run()
1281 loaded_oat_file_ = dex_files[0]->GetOatDexFile()->GetOatFile(); in Run()
1577 EXPECT_EQ(dex_files_first[0]->GetOatDexFile(), nullptr); in TEST_F()
1606 EXPECT_NE(dex_files_second[0]->GetOatDexFile(), nullptr); in TEST_F()
1607 EXPECT_NE(dex_files_second[0]->GetOatDexFile()->GetOatFile(), nullptr); in TEST_F()
Doat_file.h305 const OatDexFile* GetOatDexFile(const char* dex_location,
Doat_file.cc2010 const OatDexFile* OatFile::GetOatDexFile(const char* dex_location, in GetOatDexFile() function in art::OatFile
2249 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in FindClassDef()
2298 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in MadviseDexFile()
2400 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in FindOatClass()
Dclass_linker.cc1681 const OatDexFile* oat_dex_file = oat_file->GetOatDexFile(location, nullptr, error_msg); in OpenOatDexFile()
3922 (dex_file.GetOatDexFile() != nullptr) ? dex_file.GetOatDexFile()->GetOatFile() : nullptr; in RegisterDexFileLocked()
3935 it->dex_file->GetOatDexFile() != nullptr && in RegisterDexFileLocked()
3936 it->dex_file->GetOatDexFile()->GetOatFile() == oat_file) { in RegisterDexFileLocked()
4810 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in VerifyClassUsingOatFile()
/art/runtime/entrypoints/
Dentrypoint_utils.cc289 if (callee_reference.dex_file->GetOatDexFile() != nullptr) { in MaybeUpdateBssMethodEntry()
291 callee_reference.dex_file->GetOatDexFile()->GetMethodBssMapping(), in MaybeUpdateBssMethodEntry()
297 const OatFile* oat_file = callee_reference.dex_file->GetOatDexFile()->GetOatFile(); in MaybeUpdateBssMethodEntry()
/art/runtime/entrypoints/quick/
Dquick_dexcache_entrypoints.cc86 const OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); in StoreTypeInBss()
114 const OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); in StoreStringInBss()
Dquick_trampoline_entrypoints.cc1134 const OatDexFile* oat_dex_file = klass->GetDexFile().GetOatDexFile(); in DumpB74410240ClassData()
/art/test/common/
Druntime_state.cc69 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in Java_Main_hasOatFile()
80 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in Java_Main_getCompilerFilter()
120 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in Java_Main_compiledWithOptimizing()
/art/test/692-vdex-inmem-loader/
Dvdex_inmem_loader.cc122 bool is_backed_by_oat = (dex_file->GetOatDexFile() != nullptr); in Java_Main_isBackedByOatFile()
/art/runtime/jit/
Djit.cc898 if (dex_file->GetOatDexFile() != nullptr && in Run()
899 dex_file->GetOatDexFile()->GetOatFile() != nullptr) { in Run()
1201 if (dex_file->GetOatDexFile() == nullptr) { in CreateThreadPool()
1783 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in CanAssumeInitialized()
/art/libdexfile/dex/
Ddex_file.h736 const OatDexFile* GetOatDexFile() const { in GetOatDexFile() function
/art/dex2oat/
Ddex2oat.cc1552 if (kIsDebugBuild && df->GetOatDexFile() != nullptr) { in Setup()
1553 const OatFile* oat_file = df->GetOatDexFile()->GetOatFile(); in Setup()
1562 return df->GetOatDexFile() == nullptr; in Setup()
/art/dex2oat/linker/
Doat_writer_test.cc464 const OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(), in TEST_F()
/art/runtime/gc/space/
Dimage_space.cc3308 const OatDexFile* multi_dex = oat_file.GetOatDexFile(multi_dex_location.c_str(), in ValidateOatFile()