Searched defs:out_dex_path (Results 1 - 1 of 1) sorted by relevance

/art/oatdump/
H A Doatdump.cc684 std::string out_dex_path(options_.export_dex_location_);
685 if (out_dex_path.back() != '/') {
686 out_dex_path.append("/");
688 out_dex_path.append(dex_orig_name);
689 out_dex_path.append("_export.dex");
690 if (out_dex_path.length() > PATH_MAX) {
694 std::unique_ptr<File> file(OS::CreateEmptyFile(out_dex_path.c_str()));
696 os << "Failed to open output dex file " << out_dex_path; local
711 os << StringPrintf("Dex file exported at %s (%zd bytes)\n", out_dex_path.c_str(), fsize);

Completed in 39 milliseconds