Lines Matching refs:reference_profile_file_
254 reference_profile_file_ = option.substr(strlen("--reference-profile-file=")).ToString(); in ParseArgs()
293 if (!reference_profile_file_.empty() && FdIsValid(reference_profile_file_fd_)) { in ParseArgs()
323 if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in ProcessProfiles()
364 reference_profile_file_, in ProcessProfiles()
506 reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in DumpProfileInfo()
548 if (!reference_profile_file_.empty()) { in DumpProfileInfo()
550 reference_profile_file_, in DumpProfileInfo()
645 reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in DumpClassesAndMethods()
674 if (!reference_profile_file_.empty()) { in DumpClassesAndMethods()
675 if (!GetClassNamesAndMethods(reference_profile_file_, &dex_files, &class_names)) { in DumpClassesAndMethods()
1013 CHECK(!reference_profile_file_.empty()); in OpenReferenceProfile()
1014 fd = open(reference_profile_file_.c_str(), O_CREAT | O_TRUNC | O_WRONLY, 0644); in OpenReferenceProfile()
1016 LOG(ERROR) << "Cannot open " << reference_profile_file_ << strerror(errno); in OpenReferenceProfile()
1039 if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in CreateProfile()
1187 if (reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in CopyAndUpdateProfileKey()
1215 : profile.Save(reference_profile_file_, /*bytes_written*/ nullptr); in CopyAndUpdateProfileKey()
1253 std::string reference_profile_file_; member in art::FINAL