Home
last modified time | relevance | path

Searched refs:packagePath (Results 1 – 5 of 5) 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.cpp139 std::string packagePath; in getFilepath() local
147 err = getPackagePath(fqName, false /* relative */, false /* sanitized */, &packagePath); in getFilepath()
150 *path = mOutputPath + packagePath + fileName; in getFilepath()
155 err = getPackagePath(fqName, true /* relative */, false /* sanitized */, &packagePath); in getFilepath()
158 *path = mOutputPath + packageRootPath + packagePath + fileName; in getFilepath()
163 err = getPackagePath(fqName, true /* relative */, true /* sanitized */, &packagePath); in getFilepath()
166 *path = mOutputPath + packageRootPath + packagePath + fileName; in getFilepath()
249 std::string packagePath; in parseOptional() local
251 getPackagePath(fqName, false /* relative */, false /* sanitized */, &packagePath); in parseOptional()
254 const std::string path = makeAbsolute(packagePath + fqName.name() + ".hal"); in parseOptional()
[all …]
Dmain.cpp952 std::string packagePath; in generateExportHeaderForPackage() local
954 false /* sanitized */, &packagePath); in generateExportHeaderForPackage()
959 << "// Location: " << packagePath << "\n\n"; in generateExportHeaderForPackage()
/system/tools/aidl/build/
Daidl_gen_rule.go208 packagePath := filepath.Dir(relPath)
223 headers = append(headers, g.genHeaderDir.Join(ctx, prefix, packagePath,
225 headers = append(headers, g.genHeaderDir.Join(ctx, prefix, packagePath,
227 headers = append(headers, g.genHeaderDir.Join(ctx, prefix, packagePath,
/system/apex/apexd/aidl/android/apex/
DIApexService.aidl161 ApexInfo installAndActivatePackage(in @utf8InCpp String packagePath); in installAndActivatePackage() argument