Lines Matching refs:profile
869 /*out*/ProfileCompilationInfo* profile) { in ProcessLine() argument
945 profile->AddMethods(methods, static_cast<ProfileCompilationInfo::MethodHotness::Flag>(flags)); in ProcessLine()
946 profile->AddClasses(resolved_class_set); in ProcessLine()
997 profile->AddMethod(ProfileMethodInfo(ref, inline_caches), in ProcessLine()
1001 if (!profile->AddMethodIndex( in ProcessLine()
1005 DCHECK(profile->GetMethodHotness(ref).IsInProfile()); in ProcessLine()
1098 std::unique_ptr<const ProfileCompilationInfo> profile(LoadProfile("", profile_file_fd)); in CreateBootProfile() local
1099 if (profile == nullptr) { in CreateBootProfile()
1102 profiles.emplace_back(std::move(profile)); in CreateBootProfile()
1107 … std::unique_ptr<const ProfileCompilationInfo> profile(LoadProfile(profile_file, kInvalidFd)); in CreateBootProfile() local
1108 if (profile == nullptr) { in CreateBootProfile()
1111 profiles.emplace_back(std::move(profile)); in CreateBootProfile()
1201 ProfileCompilationInfo profile; in CopyAndUpdateProfileKey() local
1204 ? profile.Load(profile_files_fd_[0]) in CopyAndUpdateProfileKey()
1205 : profile.Load(profile_files_[0], /*clear_if_invalid*/ false); in CopyAndUpdateProfileKey()
1210 if (!profile.UpdateProfileKeys(dex_files)) { in CopyAndUpdateProfileKey()
1214 ? profile.Save(reference_profile_file_fd_) in CopyAndUpdateProfileKey()
1215 : profile.Save(reference_profile_file_, /*bytes_written*/ nullptr); in CopyAndUpdateProfileKey()