Lines Matching defs:protoBinPath
33 bool MergeProgram::EnumerateFilesWindows(const std::string &protoBinPath, const std::string &protoBinSuffix,
39 if ((handle = _findfirst(path.assign(protoBinPath).append("\\*").c_str(), &fileInfo)) == -1) {
47 if (!GetProtoFiles(path.assign(protoBinPath).append("\\").append(fileInfo.name), protoBinSuffix,
55 directoryFiles.emplace_back(path.assign(protoBinPath).append("\\").append(fileName));
64 bool MergeProgram::EnumerateFilesUnix(const std::string &protoBinPath, const std::string &protoBinSuffix,
67 DIR *protoBin = opendir(protoBinPath.c_str());
72 std::string pathPrefix = protoBinPath + "/";
95 bool MergeProgram::GetProtoFiles(const std::string &protoBinPath, const std::string &protoBinSuffix,
99 return EnumerateFilesWindows(protoBinPath, protoBinSuffix, directoryFiles);
101 return EnumerateFilesUnix(protoBinPath, protoBinSuffix, directoryFiles);