Lines Matching refs:profile_files_fd_
252 ParseFdForCollection(option, "--profile-file-fd", &profile_files_fd_); in ParseArgs()
290 if (!profile_files_.empty() && !profile_files_fd_.empty()) { in ParseArgs()
320 if (profile_files_.empty() && profile_files_fd_.empty()) { in ProcessProfiles()
327 (!profile_files_fd_.empty() && !FdIsValid(reference_profile_file_fd_))) { in ProcessProfiles()
358 result = ProfileAssistant::ProcessProfiles(profile_files_fd_, in ProcessProfiles()
361 CloseAllFds(profile_files_fd_, "profile_files_fd_"); in ProcessProfiles()
505 if (profile_files_.empty() && profile_files_fd_.empty() && in DumpProfileInfo()
517 if (!profile_files_fd_.empty()) { in DumpProfileInfo()
518 for (int profile_file_fd : profile_files_fd_) { in DumpProfileInfo()
644 if (profile_files_.empty() && profile_files_fd_.empty() && in DumpClassesAndMethods()
654 if (!profile_files_fd_.empty()) { in DumpClassesAndMethods()
655 for (int profile_file_fd : profile_files_fd_) { in DumpClassesAndMethods()
1043 if (!profile_files_.empty() || !profile_files_fd_.empty()) { in CreateProfile()
1096 if (!profile_files_fd_.empty()) { in CreateBootProfile()
1097 for (int profile_file_fd : profile_files_fd_) { in CreateBootProfile()
1184 if (!(profile_files_.size() == 1 ^ profile_files_fd_.size() == 1)) { in CopyAndUpdateProfileKey()
1199 bool use_fds = profile_files_fd_.size() == 1; in CopyAndUpdateProfileKey()
1204 ? profile.Load(profile_files_fd_[0]) in CopyAndUpdateProfileKey()
1249 std::vector<int> profile_files_fd_; member in art::FINAL