Lines Matching refs:reference_profile_file_

384         reference_profile_file_ = std::string(option.substr(strlen("--reference-profile-file=")));  in ParseArgs()
424 if (!reference_profile_file_.empty() && FdIsValid(reference_profile_file_fd_)) { in ParseArgs()
454 if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in ProcessProfiles()
497 reference_profile_file_, in ProcessProfiles()
650 reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in DumpProfileInfo()
703 if (!reference_profile_file_.empty()) { in DumpProfileInfo()
705 reference_profile_file_, in DumpProfileInfo()
805 reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in DumpClassesAndMethods()
834 if (!reference_profile_file_.empty()) { in DumpClassesAndMethods()
835 if (!GetClassNamesAndMethods(reference_profile_file_, &dex_files, &class_names)) { in DumpClassesAndMethods()
1221 CHECK(!reference_profile_file_.empty()); in OpenReferenceProfile()
1227 fd = open(reference_profile_file_.c_str(), flags, 0644); in OpenReferenceProfile()
1229 PLOG(ERROR) << "Cannot open " << reference_profile_file_; in OpenReferenceProfile()
1245 if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in CreateBootProfile()
1300 if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in CreateProfile()
1438 if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in CopyAndUpdateProfileKey()
1466 : profile.Save(reference_profile_file_, /*bytes_written=*/ nullptr); in CopyAndUpdateProfileKey()
1504 std::string reference_profile_file_; member in art::ProfMan