Home
last modified time | relevance | path

Searched refs:outputPath (Results 1 – 7 of 7) 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/core/adb/client/
Dfastdeploy.h32 void apply_patch_on_device(const char* apkPath, const char* patchPath, const char* outputPath);
Dfastdeploy.cpp279 void apply_patch_on_device(const char* apkPath, const char* patchPath, const char* outputPath) { in apply_patch_on_device() argument
292 patchDevicePath.c_str(), outputPath); in apply_patch_on_device()
/system/tools/hidl/
Dmain.cpp1257 std::string outputPath; in main() local
1283 if (!outputPath.empty()) { in main()
1287 outputPath = optarg; in main()
1385 if (outputPath.empty()) { in main()
1391 if (outputPath.back() != '/') { in main()
1392 outputPath += "/"; in main()
1398 if (outputPath.empty()) { in main()
1399 outputPath = coordinator.getRootPath(); in main()
1401 if (outputPath.back() != '/') { in main()
1402 outputPath += "/"; in main()
[all …]
DCoordinator.h40 void setOutputPath(const std::string& outputPath);
DCoordinator.cpp57 void Coordinator::setOutputPath(const std::string& outputPath) { in setOutputPath() argument
58 mOutputPath = outputPath; in setOutputPath()
/system/core/adb/fastdeploy/deployagent/src/com/android/fastdeploy/
DDeployAgent.java84 String outputPath = args[4]; in main() local
85 if (!outputPath.equals("-")) { in main()
86 outputStream = new FileOutputStream(outputPath); in main()