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

  /art/tools/
generate-boot-image-profile.sh 36 profman_args=()
38 profman_args+=("$2")
45 profman_args+=("--profile-file=$file")
57 profman_args+=("${jar_args[@]}")
60 "$ANDROID_HOST_OUT/bin/profman" --generate-boot-image-profile "--reference-profile-file=$OUT_PROFILE" "${profman_args[@]}"
  /frameworks/native/cmds/installd/
dexopt.cpp 770 std::vector<std::string> profman_args; local
772 profman_args.push_back(PROFMAN_BIN);
773 profman_args.push_back("--dump-only");
774 profman_args.push_back(StringPrintf("--dump-output-to-fd=%d", output_fd.get()));
776 profman_args.push_back(StringPrintf("--reference-profile-file-fd=%d",
780 profman_args.push_back(StringPrintf("--profile-file-fd=%d", profile_fds[i].get()));
783 profman_args.push_back(StringPrintf("--dex-location=%s", dex_location.c_str()));
786 profman_args.push_back(StringPrintf("--apk-fd=%d", apk_fds[i].get()));
788 const char **argv = new const char*[profman_args.size() + 1];
790 for (const std::string& profman_arg : profman_args) {
    [all...]

Completed in 60 milliseconds