Home
last modified time | relevance | path

Searched refs:out_dex_path (Results 1 – 1 of 1) sorted by relevance

/art/oatdump/
Doatdump.cc1031 std::string out_dex_path(options_.export_dex_location_); in ExportDexFile() local
1032 if (out_dex_path.back() != '/') { in ExportDexFile()
1033 out_dex_path.append("/"); in ExportDexFile()
1035 out_dex_path.append(dex_orig_name); in ExportDexFile()
1036 out_dex_path.append("_export.dex"); in ExportDexFile()
1037 if (out_dex_path.length() > PATH_MAX) { in ExportDexFile()
1041 std::unique_ptr<File> file(OS::CreateEmptyFile(out_dex_path.c_str())); in ExportDexFile()
1043 os << "Failed to open output dex file " << out_dex_path; in ExportDexFile()
1058 os << StringPrintf("Dex file exported at %s (%zd bytes)\n", out_dex_path.c_str(), fsize); in ExportDexFile()