Home
last modified time | relevance | path

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

/art/test/596-app-images/
Dapp_images.cc67 if (image_header.IsAppImage() && in Java_Main_checkAppImageLoaded()
83 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/
Dimage.cc100 bool ImageHeader::IsAppImage() const { in IsAppImage() function in art::ImageHeader
108 DCHECK(!IsAppImage()); in GetImageSpaceCount()
Dintern_table-inl.h36 AddTableFromMemory(image_space->Begin() + section.Offset(), visitor, !header.IsAppImage()); in AddImageStringsToTable()
Dimage.h367 bool IsAppImage() const;
Druntime.cc2963 if (image_space->GetImageHeader().IsAppImage()) { in Run()
2983 if (image_space->GetImageHeader().IsAppImage()) { in Run()
/art/compiler/driver/
Dcompiler_options.h219 return IsBootImage() || IsBootImageExtension() || IsAppImage(); in IsGeneratingImage()
237 bool IsAppImage() const { in IsAppImage() function
/art/dex2oat/linker/
Dimage_test.cc95 ASSERT_TRUE(!image_header.IsAppImage()); in TEST_F()
Dimage_writer.cc204 return compiler_options_.IsAppImage() in GetAppClassLoader()
253 if (compiler_options_.IsAppImage()) { in PrepareImageAddressSpace()
301 if (VLOG_IS_ON(compiler) && compiler_options_.IsAppImage()) { in PrepareImageAddressSpace()
328 DCHECK(compiler_options_.IsAppImage()); in CopyMetadata()
431 if (compiler_options_.IsAppImage()) { in Write()
465 if (image_fd == -1 && !compiler_options_.IsAppImage() && fchmod(image_file->Fd(), 0644) != 0) { in Write()
1057 DCHECK(compiler_options_.IsAppImage() || compiler_options_.IsBootImageExtension()); in PruneImageClassInternal()
1164 if (compiler_options_.IsAppImage()) { in KeepClass()
1545 int32_t image_roots_size = ImageHeader::NumberOfImageRoots(compiler_options_.IsAppImage()); in CreateImageRoots()
1550 if (!compiler_options_.IsAppImage()) { in CreateImageRoots()
[all …]
/art/dex2oat/
Ddex2oat.cc1050 if (IsAppImage() && multi_image_) { in ProcessOptions()
2516 return IsAppImage() || IsBootImage() || IsBootImageExtension(); in IsImage()
2519 bool IsAppImage() const { in IsAppImage() function in art::Dex2Oat
2520 return compiler_options_->IsAppImage(); in IsAppImage()
2863 if (IsAppImage()) { in CreateImageFile()
2875 if (!image_writer_->Write(IsAppImage() ? app_image_fd_ : image_fd_, in CreateImageFile()
2877 IsAppImage() ? 1u : dex_locations_.size())) { in CreateImageFile()
/art/dex2oat/driver/
Dcompiler_driver.cc2235 const bool is_app_image = compiler_options.IsAppImage(); in TryInitializeClass()
2613 GetCompilerOptions().IsAppImage()) { in InitializeClasses()
2686 GetCompilerOptions().IsAppImage()) { in InitializeClasses()
/art/runtime/gc/
Dheap.cc2457 CHECK(!pair.first->AsImageSpace()->GetImageHeader().IsAppImage()); in PreZygoteFork()