Home
last modified time | relevance | path

Searched refs:IsExecutable (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Doat_file_assistant_test.cc133 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
629 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
879 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
919 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
981 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
1033 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
1061 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
1090 EXPECT_FALSE(oat_file->IsExecutable()); in TEST_F()
1288 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
1309 EXPECT_TRUE(oat_file->IsExecutable()); in TEST_F()
Doat_file_assistant.h306 bool IsExecutable();
Doat_file_manager.cc71 !oat_file->IsExecutable()) in RegisterOatFile()
483 << " (executable=" << (oat_file != nullptr ? oat_file->IsExecutable() : false) << ")"; in OpenDexFilesFromOat()
540 if (source_oat_file->IsExecutable()) { in OpenDexFilesFromOat()
Doat_file.h136 bool IsExecutable() const { in IsExecutable() function
Doat_file.cc858 } else if (!IsExecutable()) { in Setup()
1327 if (IsExecutable()) { in InitializeFromElfFile()
1423 DCHECK(!IsExecutable()); in Initialize()
2149 if (oat_file_->IsExecutable() || in GetOatMethod()
2218 DCHECK(IsExecutable()); in InitializeRelocations()
Doat_file_assistant.cc942 bool OatFileAssistant::OatFileInfo::IsExecutable() { in IsExecutable() function in art::OatFileAssistant::OatFileInfo
944 return (file != nullptr && file->IsExecutable()); in IsExecutable()
Dclass_linker.cc3840 bool initialize_oat_file_data = (oat_file != nullptr) && oat_file->IsExecutable(); in RegisterDexFileLocked()
/art/runtime/entrypoints/quick/
Dquick_dexcache_entrypoints.cc44 if (UNLIKELY(!oat_file->IsExecutable())) { in StoreObjectInBss()