Searched refs:output_location (Results 1 – 1 of 1) sorted by relevance
1828 std::string output_location(options_.output_dex_directory_); in OutputDexFile() local1831 if (output_location == dex_file_directory) { in OutputDexFile()1832 output_location = dex_file_location + ".new"; in OutputDexFile()1834 if (!output_location.empty() && output_location.back() != '/') { in OutputDexFile()1835 output_location += "/"; in OutputDexFile()1839 output_location += dex_file_location.substr(separator + 1); in OutputDexFile()1841 output_location += "classes.dex"; in OutputDexFile()1844 new_file.reset(OS::CreateEmptyFile(output_location.c_str())); in OutputDexFile()1846 LOG(ERROR) << "Could not create dex writer output file: " << output_location; in OutputDexFile()