Home
last modified time | relevance | path

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

/art/dexlayout/
Ddexlayout.cc1831 std::string output_location(options_.output_dex_directory_); in OutputDexFile() local
1834 if (output_location == dex_file_directory) { in OutputDexFile()
1835 output_location = dex_file_location + ".new"; in OutputDexFile()
1837 if (!output_location.empty() && output_location.back() != '/') { in OutputDexFile()
1838 output_location += "/"; in OutputDexFile()
1842 output_location += dex_file_location.substr(separator + 1); in OutputDexFile()
1844 output_location += "classes.dex"; in OutputDexFile()
1847 new_file.reset(OS::CreateEmptyFile(output_location.c_str())); in OutputDexFile()
1849 LOG(ERROR) << "Could not create dex writer output file: " << output_location; in OutputDexFile()