• Home
  • Raw
  • Download

Lines Matching refs:files

30     std::vector<std::pair<std::string, ComponentInfo>> &files,  in GetUpgradePkgInfo()  argument
54 files.resize(pkgInfoExt->entryCount); in GetUpgradePkgInfo()
56 files[i].first.assign(compInfo[i].filePath); in GetUpgradePkgInfo()
57 ComponentInfo* info = &files[i].second; in GetUpgradePkgInfo()
78 std::vector<std::pair<std::string, ZipFileInfo>> &files, in GetZipPkgInfo() argument
86 files.resize(pkgInfoExt->entryCount); in GetZipPkgInfo()
88 files[i].first.assign(compInfo[i].filePath); in GetZipPkgInfo()
89 ZipFileInfo* info = &files[i].second; in GetZipPkgInfo()
98 std::vector<std::pair<std::string, Lz4FileInfo>> &files, in GetLz4PkgInfo() argument
106 files.resize(pkgInfoExt->entryCount); in GetLz4PkgInfo()
108 files[i].first.assign(compInfo[i].filePath); in GetLz4PkgInfo()
109 Lz4FileInfo* info = &files[i].second; in GetLz4PkgInfo()
137 std::vector<std::pair<std::string, ComponentInfo>> files; in CreatePackage() local
138 ret = GetUpgradePkgInfo(&upgradePackageInfo, files, pkgInfoExt, compInfo); in CreatePackage()
140 ret = manager->CreatePackage(path, keyPath, &upgradePackageInfo.pkgInfo, files); in CreatePackage()
147 std::vector<std::pair<std::string, ZipFileInfo>> files; in CreatePackage() local
148 ret = GetZipPkgInfo(&info, files, pkgInfoExt, compInfo); in CreatePackage()
150 ret = manager->CreatePackage(path, keyPath, &info, files); in CreatePackage()
156 std::vector<std::pair<std::string, Lz4FileInfo>> files; in CreatePackage() local
157 ret = GetLz4PkgInfo(&info, files, pkgInfoExt, compInfo); in CreatePackage()
159 ret = manager->CreatePackage(path, keyPath, &info, files); in CreatePackage()