Lines Matching refs:dump
81 UsageError(" --dump-only: dumps the content of the specified profile files");
84 UsageError(" --dump-output-to-fd=<number>: redirects --dump-info-for output to a file");
146 if (option == "--dump-only") {
148 } else if (option.starts_with("--dump-output-to-fd=")) {
149 ParseUintOption(option, "--dump-output-to-fd", &dump_output_to_fd_, Usage);
171 // --dump-only may be specified with only --reference-profiles present.
207 const std::vector<const DexFile*>* dex_files, std::string* dump) {
221 *dump += this_dump;
260 std::string dump;
261 // Dump individual profile files.
268 &dump);
276 int ret = DumpOneProfile(kOrdinaryProfile, profile_file, kInvalidFd, &dex_files, &dump);
282 // Dump reference profile file.
288 &dump);
298 &dump);
304 std::cout << dump;
307 if (!out_fd.WriteFully(dump.c_str(), dump.length())) {