Lines Matching refs:packagePath
139 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()
444 std::string packagePath; in getPackageInterfaceFiles() local
446 getPackagePath(package, false /* relative */, false /* sanitized */, &packagePath); in getPackageInterfaceFiles()
449 const std::string path = makeAbsolute(packagePath); in getPackageInterfaceFiles()
454 packagePath.c_str(), package.string().c_str(), path.c_str()); in getPackageInterfaceFiles()
467 const auto filename = packagePath + std::string(ent->d_name); in getPackageInterfaceFiles()
661 std::string packagePath; in packageExists() local
663 getPackagePath(package, false /* relative */, false /* sanitized */, &packagePath); in packageExists()
666 if (existdir(makeAbsolute(packagePath).c_str())) { in packageExists()