Home
last modified time | relevance | path

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

/art/profman/
Dprofile_assistant.cc31 const std::vector<ScopedFlock>& profile_files, in ProcessProfilesInternal() argument
53 for (size_t i = 0; i < profile_files.size(); i++) { in ProcessProfilesInternal()
55 if (!cur_info.Load(profile_files[i]->Fd(), /*merge_classes=*/ true, filter_fn)) { in ProcessProfilesInternal()
65 if (wrong_info.Load(profile_files[i]->Fd(), /*merge_classes=*/ true, filter_fn)) { in ProcessProfilesInternal()
166 ScopedFlockList profile_files(profile_files_fd.size()); in ProcessProfiles() local
167 if (!profile_files.Init(profile_files_fd, &error)) { in ProcessProfiles()
183 return ProcessProfilesInternal(profile_files.Get(), in ProcessProfiles()
190 const std::vector<std::string>& profile_files, in ProcessProfiles() argument
196 ScopedFlockList profile_files_list(profile_files.size()); in ProcessProfiles()
197 if (!profile_files_list.Init(profile_files, &error)) { in ProcessProfiles()
Dprofile_assistant.h102 const std::vector<std::string>& profile_files,
117 const std::vector<ScopedFlock>& profile_files,
Dboot_image_profile.h78 const std::vector<std::string>& profile_files,
Dboot_image_profile.cc200 const std::vector<std::string>& profile_files, in GenerateBootImageProfile() argument
212 for (const std::string& profile_file : profile_files) { in GenerateBootImageProfile()
/art/runtime/gc/space/
Dimage_space.h326 std::vector<std::string> profile_files; member
494 const std::vector<std::string>& profile_files,
Dimage_space.cc90 const std::vector<std::string>& profile_files, in ImageSpace() argument
103 profile_files_(profile_files) { in ImageSpace()
689 const std::vector<std::string>& profile_files, in Init() argument
802 profile_files, in Init()
2054 chunk.profile_files = profile_filenames; in CompileBootclasspathElements()
2806 const std::vector<std::string>& profile_files, in Load() argument
2820 profile_files, in Load()
3062 chunk.profile_files, in LoadComponents()
/art/dex2oat/
Ddex2oat.cc2367 std::vector<std::unique_ptr<File>> profile_files; in LoadProfile() local
2370 profile_files.push_back(std::make_unique<File>(DupCloexec(fd), in LoadProfile()
2377 profile_files.emplace_back(OS::OpenFileForReading(file.c_str())); in LoadProfile()
2378 if (profile_files.back().get() == nullptr) { in LoadProfile()
2399 for (const std::unique_ptr<File>& profile_file : profile_files) { in LoadProfile()
/art/artd/
Dartd.cc844 std::vector<std::unique_ptr<File>> profile_files; in mergeProfiles() local
857 profile_files.push_back(std::move(profile_file.value())); in mergeProfiles()
860 if (profile_files.empty()) { in mergeProfiles()