Home
last modified time | relevance | path

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

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