Home
last modified time | relevance | path

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

/system/sepolicy/build/soong/
Dselinux_contexts.go76 outputPath android.ModuleGenPath member
125 m.outputPath = reuseDeps.outputPath
126 ctx.InstallFile(m.installPath, m.Name(), m.outputPath)
218 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", m.outputPath.String())
265 m.outputPath = android.PathForModuleGen(ctx, ctx.ModuleName()+"_m4out")
274 FlagWithOutput("> ", m.outputPath)
277 rule.Temporary(m.outputPath)
283 Input(m.outputPath).
286 m.outputPath = remove_comment_output
290 rule.Temporary(m.outputPath)
[all …]
/system/tools/hidl/c2hal/
Dmain.cpp75 std::string &outputPath) { in applyPackageRootPath() argument
93 if (outputPath.empty()) { in applyPackageRootPath()
94 outputPath = rootPath; in applyPackageRootPath()
97 outputPath += '/' + packagePath + '/'; in applyPackageRootPath()
102 CHECK(!outputPath.empty()) << "No package root path provided for: " << package; in applyPackageRootPath()
104 outputPath += '/'; in applyPackageRootPath()
/system/tools/hidl/hidl2aidl/
Dmain.cpp147 std::string outputPath; in main() local
151 if (!outputPath.empty()) { in main()
155 outputPath = arg; in main()
168 if (!outputPath.empty() && outputPath.back() != '/') { in main()
169 outputPath += "/"; in main()
171 coordinator.setOutputPath(outputPath); in main()
/system/tools/hidl/
Dmain.cpp1375 std::string outputPath; in main() local
1380 if (!outputPath.empty()) { in main()
1384 outputPath = arg; in main()
1447 if (outputPath.empty()) { in main()
1453 if (outputPath.back() != '/') { in main()
1454 outputPath += "/"; in main()
1460 if (outputPath.empty()) { in main()
1461 outputPath = coordinator.getRootPath(); in main()
1463 if (outputPath.back() != '/') { in main()
1464 outputPath += "/"; in main()
[all …]
DCoordinator.h40 void setOutputPath(const std::string& outputPath);
DCoordinator.cpp58 void Coordinator::setOutputPath(const std::string& outputPath) { in setOutputPath() argument
59 mOutputPath = outputPath; in setOutputPath()
/system/core/adb/fastdeploy/deployagent/src/com/android/fastdeploy/
DDeployAgent.java91 String outputPath = args[3]; in main() local
92 if (!outputPath.equals("-")) { in main()
93 outputStream = new FileOutputStream(outputPath); in main()