Home
last modified time | relevance | path

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

/art/runtime/entrypoints/quick/
Dquick_dexcache_entrypoints.cc86 const OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); in StoreTypeInBss()
104 const OatDexFile* oat_dex_file = dex_file->GetOatDexFile(); in StoreStringInBss()
Dquick_trampoline_entrypoints.cc1135 const OatDexFile* oat_dex_file = klass->GetDexFile().GetOatDexFile(); in DumpB74410240ClassData()
1323 if (called != nullptr && called_method.dex_file->GetOatDexFile() != nullptr) { in artQuickResolutionTrampoline()
1325 called_method.dex_file->GetOatDexFile()->GetMethodBssMapping(), in artQuickResolutionTrampoline()
1331 const OatFile* oat_file = called_method.dex_file->GetOatDexFile()->GetOatFile(); in artQuickResolutionTrampoline()
/art/openjdkjvmti/
Dfixed_up_dex_file.cc55 const art::OatDexFile* oat_dex = original_dex_file.GetOatDexFile(); in GetVdex()
/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/runtime/
Dclass_table.cc235 if (dex_file != nullptr && dex_file->GetOatDexFile() != nullptr) { in InsertStrongRoot()
236 const OatFile* oat_file = dex_file->GetOatDexFile()->GetOatFile(); in InsertStrongRoot()
Doat_file_assistant.cc275 const OatDexFile* oat_dex_file = oat_file.GetOatDexFile( in LoadDexFiles()
292 oat_dex_file = oat_file.GetOatDexFile(multidex_dex_location.c_str(), nullptr); in LoadDexFiles()
377 const OatDexFile* oat_dex_file = file.GetOatDexFile(dex.c_str(), nullptr); in DexChecksumUpToDate()
593 const OatDexFile* odex_dex_file = odex_file->GetOatDexFile(dex.c_str(), nullptr); in GetRequiredDexChecksums()
Doat_file_assistant_test.cc1243 if (dex_files[0]->GetOatDexFile() != nullptr) { in Run()
1244 loaded_oat_file_ = dex_files[0]->GetOatDexFile()->GetOatFile(); in Run()
1513 EXPECT_EQ(dex_files_first[0]->GetOatDexFile(), nullptr); in TEST_F()
1541 EXPECT_NE(dex_files_second[0]->GetOatDexFile(), nullptr); in TEST_F()
1542 EXPECT_NE(dex_files_second[0]->GetOatDexFile()->GetOatFile(), nullptr); in TEST_F()
Doat_file.h303 const OatDexFile* GetOatDexFile(const char* dex_location,
Doat_file.cc1792 const OatDexFile* OatFile::GetOatDexFile(const char* dex_location, in GetOatDexFile() function in art::OatFile
2024 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in FindClassDef()
2072 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in MadviseDexFile()
2180 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in FindOatClass()
Dart_method.cc557 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in GetQuickenedInfo()
Dclass_linker.cc1767 const OatDexFile* oat_dex_file = oat_file->GetOatDexFile(location, nullptr, error_msg); in OpenOatDexFile()
3984 (dex_file.GetOatDexFile() != nullptr) ? dex_file.GetOatDexFile()->GetOatFile() : nullptr; in RegisterDexFileLocked()
3997 it->dex_file->GetOatDexFile() != nullptr && in RegisterDexFileLocked()
3998 it->dex_file->GetOatDexFile()->GetOatFile() == oat_file) { in RegisterDexFileLocked()
4854 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in VerifyClassUsingOatFile()
Druntime.cc2891 const OatDexFile* odf = df->GetOatDexFile(); in DeoptimizeBootImage()
/art/test/692-vdex-inmem-loader/
Dvdex_inmem_loader.cc119 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()
1212 if (dex_file->GetOatDexFile() == nullptr) { in CreateThreadPool()
1833 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in CanAssumeInitialized()
/art/libdexfile/dex/
Ddex_file.h720 const OatDexFile* GetOatDexFile() const { in GetOatDexFile() function
/art/dex2oat/
Ddex2oat.cc1798 if (kIsDebugBuild && df->GetOatDexFile() != nullptr) { in Setup()
1799 const OatFile* oat_file = df->GetOatDexFile()->GetOatFile(); in Setup()
1808 return df->GetOatDexFile() == nullptr; in Setup()
/art/dex2oat/linker/
Doat_writer_test.cc479 const OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(), in TEST_F()
/art/runtime/dex/
Ddex_file_annotations.cc1374 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in MethodContainsRSensitiveAccess()
/art/runtime/gc/space/
Dimage_space.cc3790 const OatDexFile* multi_dex = oat_file.GetOatDexFile(multi_dex_location.c_str(), in ValidateOatFile()