Lines Matching refs:reference_profile_file_fd_

272       reference_profile_file_fd_(kInvalidFd),  in ProfMan()
386 ParseUintOption(raw_option, "--reference-profile-file-fd=", &reference_profile_file_fd_); 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()
457 if ((!profile_files_.empty() && FdIsValid(reference_profile_file_fd_)) || in ProcessProfiles()
458 (!profile_files_fd_.empty() && !FdIsValid(reference_profile_file_fd_))) { in ProcessProfiles()
489 File file(reference_profile_file_fd_, false); in ProcessProfiles()
491 reference_profile_file_fd_, in ProcessProfiles()
650 reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in DumpProfileInfo()
693 if (FdIsValid(reference_profile_file_fd_)) { in DumpProfileInfo()
696 reference_profile_file_fd_, in DumpProfileInfo()
805 reference_profile_file_.empty() && !FdIsValid(reference_profile_file_fd_)) { in DumpClassesAndMethods()
829 if (FdIsValid(reference_profile_file_fd_)) { in DumpClassesAndMethods()
830 if (!GetClassNamesAndMethods(reference_profile_file_fd_, &dex_files, &class_names)) { in DumpClassesAndMethods()
1219 int fd = reference_profile_file_fd_; 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()
1465 ? profile.Save(reference_profile_file_fd_) in CopyAndUpdateProfileKey()
1505 int reference_profile_file_fd_; member in art::ProfMan