Home
last modified time | relevance | path

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

/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.cpp284 std::string outputPath; in main() local
290 if (!outputPath.empty()) { in main()
294 outputPath = arg; in main()
320 if (!outputPath.empty() && outputPath.back() != '/') { in main()
321 outputPath += "/"; in main()
323 coordinator.setOutputPath(outputPath); in main()
/system/sepolicy/build/soong/
Dselinux_contexts.go72 outputPath android.Path member
135 m.outputPath = reuseDeps.outputPath
136 ctx.InstallFile(m.installPath, m.Name(), m.outputPath)
183 m.outputPath = m.build(ctx, inputs)
184 ctx.InstallFile(m.installPath, ctx.ModuleName(), m.outputPath)
233 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", m.outputPath.String())
/system/tools/hidl/
Dmain.cpp1462 std::string outputPath; in main() local
1467 if (!outputPath.empty()) { in main()
1471 outputPath = arg; in main()
1534 if (outputPath.empty()) { in main()
1540 if (outputPath.back() != '/') { in main()
1541 outputPath += "/"; in main()
1547 if (outputPath.empty()) { in main()
1548 outputPath = coordinator.getRootPath(); in main()
1550 if (outputPath.back() != '/') { in main()
1551 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()