Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/
DMain.cpp869 Source outPath = options.generateJavaClass.value(); in link() local
875 appendPath(&outPath.path, part); in link()
878 if (!mkdirs(outPath.path)) { in link()
879 Logger::error(outPath) << strerror(errno) << std::endl; in link()
883 appendPath(&outPath.path, "R.java"); in link()
886 Logger::note(outPath) << "writing Java symbols." << std::endl; in link()
889 std::ofstream fout(outPath.path); in link()
891 Logger::error(outPath) << strerror(errno) << std::endl; in link()
896 Logger::error(outPath) << generator.getError() << "." << std::endl; in link()
904 const Source& outPath = options.generateProguardRules.value(); in link() local
[all …]
/frameworks/compile/slang/
Dslang_rs_reflect_utils.h116 bool startFile(const std::string &outPath, const std::string &outFileName,
/frameworks/base/core/java/android/app/backup/
DBackupAgent.java723 String outPath = outFile.getCanonicalPath(); in onRestoreFile() local
724 if (outPath.startsWith(basePath + File.separatorChar)) { in onRestoreFile()
725 if (DEBUG) Log.i(TAG, "[" + domain + " : " + path + "] mapped to " + outPath); in onRestoreFile()
731 Log.e(TAG, "Cross-domain restore attempt: " + outPath); in onRestoreFile()