Home
last modified time | relevance | path

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

/system/tools/hidl/c2hal/
Dmain.cpp80 auto packagePath = package.substr(0, index); in applyPackageRootPath() local
87 if (isPathPrefix(rootPackage, packagePath)) { in applyPackageRootPath()
89 packagePath = packagePath.substr(rootPackage.size() + 1); in applyPackageRootPath()
90 std::replace(packagePath.begin(), packagePath.end(), '.', '/'); in applyPackageRootPath()
91 packagePath += '/' + packageVersion; in applyPackageRootPath()
97 outputPath += '/' + packagePath + '/'; in applyPackageRootPath()
/system/tools/hidl/
DCoordinator.cpp135 std::string packagePath; in getFilepath() local
143 err = getPackagePath(fqName, false /* relative */, false /* sanitized */, &packagePath); in getFilepath()
146 *path = mOutputPath + packagePath + fileName; in getFilepath()
151 err = getPackagePath(fqName, true /* relative */, false /* sanitized */, &packagePath); in getFilepath()
154 *path = mOutputPath + packageRootPath + packagePath + fileName; in getFilepath()
159 err = getPackagePath(fqName, true /* relative */, true /* sanitized */, &packagePath); in getFilepath()
162 *path = mOutputPath + packageRootPath + packagePath + fileName; in getFilepath()
245 std::string packagePath; in parseOptional() local
247 getPackagePath(fqName, false /* relative */, false /* sanitized */, &packagePath); in parseOptional()
250 const std::string path = makeAbsolute(packagePath + fqName.name() + ".hal"); in parseOptional()
[all …]
Dmain.cpp865 std::string packagePath; in generateExportHeaderForPackage() local
867 false /* sanitized */, &packagePath); in generateExportHeaderForPackage()
872 << "// Location: " << packagePath << "\n\n"; in generateExportHeaderForPackage()
/system/core/adb/fastdeploy/deployagent/src/com/android/fastdeploy/
DDeployAgent.java61 String packagePath = getFilenameFromPackageName(packageName); in main() local
62 if (packagePath != null) { in main()
63 dumpApk(packageName, packagePath); in main()
178 private static void dumpApk(String packageName, String packagePath) throws IOException { in dumpApk() argument
179 File apk = new File(packagePath); in dumpApk()
/system/apex/apexd/
Dapexservice.cpp81 BinderStatus activatePackage(const std::string& packagePath) override;
82 BinderStatus deactivatePackage(const std::string& packagePath) override;
325 BinderStatus ApexService::activatePackage(const std::string& packagePath) { in activatePackage() argument
332 << packagePath; in activatePackage()
334 Result<void> res = ::android::apex::activatePackage(packagePath); in activatePackage()
341 LOG(ERROR) << "Failed to activate " << packagePath << ": " << res.error(); in activatePackage()
347 BinderStatus ApexService::deactivatePackage(const std::string& packagePath) { in deactivatePackage() argument
354 << packagePath; in deactivatePackage()
356 Result<void> res = ::android::apex::deactivatePackage(packagePath); in deactivatePackage()
363 LOG(ERROR) << "Failed to deactivate " << packagePath << ": " << res.error(); in deactivatePackage()
/system/tools/aidl/build/
Daidl_interface.go361 packagePath := filepath.Dir(relPath)
376 headers = append(headers, g.genHeaderDir.Join(ctx, prefix, packagePath,
378 headers = append(headers, g.genHeaderDir.Join(ctx, prefix, packagePath,
380 headers = append(headers, g.genHeaderDir.Join(ctx, prefix, packagePath,