Home
last modified time | relevance | path

Searched refs:IsAppImage (Results 1 – 11 of 11) sorted by relevance

/art/test/596-app-images/
Dapp_images.cc43 if (image_header.IsAppImage()) { in Java_Main_checkAppImageLoaded()
58 if (image_header.IsAppImage()) { in Java_Main_checkAppImageContains()
/art/test/1001-app-image-regions/
Dapp_image_regions.cc43 if (image_header.IsAppImage() && image_space->HasAddress(klass_ptr.Ptr())) { in Java_Main_checkAppImageSectionSize()
/art/runtime/
Dintern_table-inl.h35 AddTableFromMemory(image_space->Begin() + section.Offset(), visitor, !header.IsAppImage()); in AddImageStringsToTable()
Dimage.h353 bool IsAppImage() const { in IsAppImage() function
Druntime.cc2835 if (image_space->GetImageHeader().IsAppImage()) { in NotifyStartupCompleted()
2868 if (image_space->GetImageHeader().IsAppImage()) { in NotifyStartupCompleted()
/art/dex2oat/linker/
Dimage_writer.cc153 return compiler_options_.IsAppImage() in GetAppClassLoader()
237 if (compiler_options_.IsAppImage()) { in PrepareImageAddressSpace()
272 if (ClassLinker::kAppImageMayContainStrings && compiler_options_.IsAppImage()) { in PrepareImageAddressSpace()
294 if (VLOG_IS_ON(compiler) && compiler_options_.IsAppImage()) { in PrepareImageAddressSpace()
314 if (ClassLinker::kAppImageMayContainStrings && compiler_options_.IsAppImage()) { in PrepareImageAddressSpace()
628 DCHECK(compiler_options_.IsAppImage()); in CopyMetadata()
729 if (compiler_options_.IsAppImage()) { in Write()
765 if (!compiler_options_.IsAppImage() && fchmod(image_file->Fd(), 0644) != 0) { in Write()
1383 DCHECK(compiler_options_.IsAppImage()); in PruneAppImageClassInternal()
1496 if (compiler_options_.IsAppImage()) { in KeepClass()
[all …]
Dimage_test.cc93 ASSERT_TRUE(!image_header.IsAppImage()); in TEST_F()
/art/compiler/driver/
Dcompiler_options.h226 bool IsAppImage() const { in IsAppImage() function
/art/dex2oat/
Ddex2oat.cc1960 if (IsAppImage() && image_base_ == 0) { in WriteOutputFiles()
2228 return IsAppImage() || IsBootImage(); in IsImage()
2231 bool IsAppImage() const { in IsAppImage() function in art::Dex2Oat
2232 return compiler_options_->IsAppImage(); in IsAppImage()
/art/dex2oat/driver/
Dcompiler_driver.cc2126 const bool is_app_image = manager_->GetCompiler()->GetCompilerOptions().IsAppImage(); in TryInitializeClass()
2472 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) { in InitializeClasses()
2540 if (GetCompilerOptions().IsBootImage() || GetCompilerOptions().IsAppImage()) { in InitializeClasses()
/art/runtime/gc/
Dheap.cc2583 CHECK(!pair.first->AsImageSpace()->GetImageHeader().IsAppImage()); in PreZygoteFork()