Home
last modified time | relevance | path

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

/aosp12/packages/modules/SdkExtensions/derive_classpath/
H A Dmain.cpp24 std::string_view output_location; in main() local
26 output_location = android::derive_classpath::kGeneratedClasspathExportsFilepath; in main()
28 output_location = argv[1]; in main()
33 if (!android::derive_classpath::GenerateClasspathExports(output_location)) { in main()
/aosp12/art/dexlayout/
H A 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()