Searched refs:MakePatch (Results 1 – 6 of 6) sorted by relevance
/base/update/updater/services/diffpatch/diff/ |
D | update_diff.cpp | 136 int32_t UpdateDiff::MakePatch(const std::string &oldFileName, in MakePatch() function in UpdatePatch::UpdateDiff 140 return BlocksDiff::MakePatch(oldFileName, newFileName, patchFileName); in MakePatch() 165 return imageDiff->MakePatch(patchFileName); in MakePatch() 183 return imageDiff->MakePatch(patchFileName); in MakePatch() 194 return updateDiff->MakePatch(oldFileName, newFileName, patchFileName); in DiffImage() 205 return updateDiff->MakePatch(oldFileName, newFileName, patchFileName); in DiffBlock()
|
D | blocks_diff.h | 52 static int32_t MakePatch(const std::string &oldFileName, 54 static int32_t MakePatch(const BlockBuffer &newInfo, 56 static int32_t MakePatch(const BlockBuffer &newInfo, 59 int32_t MakePatch(const BlockBuffer &newInfo, const BlockBuffer &oldInfo, size_t &patchSize);
|
D | image_diff.h | 46 virtual int32_t MakePatch(const std::string &patchName); 71 int32_t MakePatch(const std::string &patchName) override;
|
D | update_diff.h | 57 …int32_t MakePatch(const std::string &oldFileName, const std::string &newFileName, const std::strin…
|
D | blocks_diff.cpp | 62 int32_t BlocksDiff::MakePatch(const std::string &oldFileName, const std::string &newFileName, in MakePatch() function in UpdatePatch::BlocksDiff 84 ret = blockdiff->MakePatch(newInfo, oldInfo, patchSize); in MakePatch() 95 int32_t BlocksDiff::MakePatch(const BlockBuffer &newInfo, in MakePatch() function in UpdatePatch::BlocksDiff 102 int32_t ret = blockdiff->MakePatch(newInfo, oldInfo, patchSize); in MakePatch() 116 int32_t BlocksDiff::MakePatch(const BlockBuffer &newInfo, in MakePatch() function in UpdatePatch::BlocksDiff 121 int32_t ret = blockdiff->MakePatch(newInfo, oldInfo, patchSize); in MakePatch() 131 int32_t BlocksDiff::MakePatch(const BlockBuffer &newInfo, const BlockBuffer &oldInfo, size_t &patch… in MakePatch() function in UpdatePatch::BlocksDiff
|
D | image_diff.cpp | 51 int32_t ImageDiff::MakePatch(const std::string &patchName) in MakePatch() function in UpdatePatch::ImageDiff 159 int32_t ret = BlocksDiff::MakePatch(newInfo, oldInfo, patchData, 0, patchSize); in MakeBlockPatch() 168 int32_t ret = BlocksDiff::MakePatch(newInfo, oldInfo, blockPatchFile, patchSize); in MakeBlockPatch() 259 int32_t CompressedImageDiff::MakePatch(const std::string &patchName) in MakePatch() function in UpdatePatch::CompressedImageDiff 293 return ImageDiff::MakePatch(patchName); in MakePatch()
|