HomeSort by relevance Sort by last modified time
    Searched refs:profiles_fd (Results 1 - 2 of 2) sorted by null

  /frameworks/native/cmds/installd/
dexopt.cpp 594 /*out*/ std::vector<unique_fd>* profiles_fd, /*out*/ unique_fd* reference_profile_fd) {
611 profiles_fd->push_back(std::move(profile_fd));
643 static void run_profman_merge(const std::vector<unique_fd>& profiles_fd,
648 std::vector<std::string> profile_args(profiles_fd.size());
650 for (size_t k = 0; k < profiles_fd.size(); k++) {
651 sprintf(profile_buf, "--profile-file-fd=%d", profiles_fd[k].get());
658 const char* argv[3 + profiles_fd.size()];
680 std::vector<unique_fd> profiles_fd; local
682 open_profile_files(uid, location, is_secondary_dex, &profiles_fd, &reference_profile_fd);
683 if (profiles_fd.empty() || (reference_profile_fd.get() < 0))
    [all...]
  /art/profman/
profile_assistant_test.cc 176 int ProcessProfiles(const std::vector<int>& profiles_fd, int reference_profile_fd) {
180 for (size_t k = 0; k < profiles_fd.size(); k++) {
181 argv_str.push_back("--profile-file-fd=" + std::to_string(profiles_fd[k]));
    [all...]

Completed in 135 milliseconds