Home
last modified time | relevance | path

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

/art/libprofile/profile/
Dprofile_compilation_info.h292 explicit ProfileCompilationInfo(bool for_boot_image);
294 ProfileCompilationInfo(ArenaPool* arena_pool, bool for_boot_image);
663 void ClearDataAndAdjustVersion(bool for_boot_image);
778 bool for_boot_image) in DexFileData()
788 is_for_boot_image(for_boot_image) { in DexFileData()
Dprofile_compilation_info.cc565 ProfileCompilationInfo::ProfileCompilationInfo(ArenaPool* custom_arena_pool, bool for_boot_image) in ProfileCompilationInfo() argument
574 for_boot_image ? kProfileVersionForBootImage : kProfileVersion, in ProfileCompilationInfo()
584 ProfileCompilationInfo::ProfileCompilationInfo(bool for_boot_image) in ProfileCompilationInfo() argument
585 : ProfileCompilationInfo(&default_arena_pool_, for_boot_image) { } in ProfileCompilationInfo()
2593 void ProfileCompilationInfo::ClearDataAndAdjustVersion(bool for_boot_image) { in ClearDataAndAdjustVersion() argument
2596 for_boot_image ? kProfileVersionForBootImage : kProfileVersion, in ClearDataAndAdjustVersion()
/art/profman/
Dprofman.cc683 bool for_boot_image) { in LoadProfile() argument
696 std::unique_ptr<ProfileCompilationInfo> info(new ProfileCompilationInfo(for_boot_image)); in LoadProfile()
938 for (bool for_boot_image : {false, true}) { in GetClassNamesAndMethods()
939 ProfileCompilationInfo profile_info(for_boot_image); in GetClassNamesAndMethods()
1781 bool for_boot_image = GetOutputProfileType() == OutputProfileType::kBoot; in CreateProfile() local
1782 ProfileCompilationInfo info(for_boot_image); in CreateProfile()
1784 if (for_boot_image) { in CreateProfile()
Dprofile_assistant_test.cc213 bool for_boot_image = false) { in CreateProfile() argument
221 argv_str.push_back(for_boot_image ? "--output-profile-type=boot" : "--output-profile-type=app"); in CreateProfile()
/art/runtime/
Dcommon_runtime_test.cc582 bool for_boot_image) { in GenerateProfile() argument
583 ProfileCompilationInfo profile(for_boot_image); in GenerateProfile()
Dcommon_runtime_test.h185 bool for_boot_image = false);
/art/test/common/
Druntime_state.cc533 bool for_boot_image = Java_Main_isForBootImage(env, c, filename) == JNI_TRUE; in GetMethodHotnessFromProfile() local
541 ProfileCompilationInfo info(Runtime::Current()->GetArenaPool(), for_boot_image); in GetMethodHotnessFromProfile()
/art/dex2oat/
Ddex2oat.cc2358 bool for_boot_image = IsBootImage() || IsBootImageExtension(); in LoadProfile() local
2359 profile_compilation_info_.reset(new ProfileCompilationInfo(for_boot_image)); in LoadProfile()