Home
last modified time | relevance | path

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

/art/test/595-profile-saving/
Dprofile-saving.cc66 bool for_boot_image = Java_Main_isForBootImage(env, c, filename) == JNI_TRUE; in Java_Main_presentInProfile() local
74 ProfileCompilationInfo info(Runtime::Current()->GetArenaPool(), for_boot_image); in Java_Main_presentInProfile()
/art/libprofile/profile/
Dprofile_compilation_info.h292 explicit ProfileCompilationInfo(bool for_boot_image);
294 ProfileCompilationInfo(ArenaPool* arena_pool, bool for_boot_image);
616 void ClearDataAndAdjustVersion(bool for_boot_image);
731 bool for_boot_image) in DexFileData()
741 is_for_boot_image(for_boot_image) { in DexFileData()
Dprofile_compilation_info.cc548 ProfileCompilationInfo::ProfileCompilationInfo(ArenaPool* custom_arena_pool, bool for_boot_image) in ProfileCompilationInfo() argument
557 for_boot_image ? kProfileVersionForBootImage : kProfileVersion, in ProfileCompilationInfo()
567 ProfileCompilationInfo::ProfileCompilationInfo(bool for_boot_image) in ProfileCompilationInfo() argument
568 : ProfileCompilationInfo(&default_arena_pool_, for_boot_image) { } in ProfileCompilationInfo()
2450 void ProfileCompilationInfo::ClearDataAndAdjustVersion(bool for_boot_image) { in ClearDataAndAdjustVersion() argument
2453 for_boot_image ? kProfileVersionForBootImage : kProfileVersion, in ClearDataAndAdjustVersion()
/art/profman/
Dprofman.cc669 bool for_boot_image) { in LoadProfile() argument
682 std::unique_ptr<ProfileCompilationInfo> info(new ProfileCompilationInfo(for_boot_image)); in LoadProfile()
910 for (bool for_boot_image : {false, true}) { in GetClassNamesAndMethods()
911 ProfileCompilationInfo profile_info(for_boot_image); in GetClassNamesAndMethods()
1735 bool for_boot_image = GetOutputProfileType() == OutputProfileType::kBoot; in CreateProfile() local
1736 ProfileCompilationInfo info(for_boot_image); in CreateProfile()
1738 if (for_boot_image) { in CreateProfile()
Dprofile_assistant_test.cc211 bool for_boot_image = false) { in CreateProfile() argument
219 argv_str.push_back(for_boot_image ? "--output-profile-type=boot" : "--output-profile-type=app"); in CreateProfile()
/art/runtime/
Dcommon_runtime_test.cc577 bool for_boot_image) { in GenerateProfile() argument
578 ProfileCompilationInfo profile(for_boot_image); in GenerateProfile()
Dcommon_runtime_test.h178 bool for_boot_image = false);
/art/dex2oat/
Ddex2oat.cc2370 bool for_boot_image = IsBootImage() || IsBootImageExtension(); in LoadProfile() local
2371 profile_compilation_info_.reset(new ProfileCompilationInfo(for_boot_image)); in LoadProfile()