/base/update/updater/services/package/pkg_algorithm/ |
H A D | pkg_algo_lz4.h | 56 int32_t Unpack(const PkgStreamPtr inStream,
96 int32_t Unpack(const PkgStreamPtr inStream, const PkgStreamPtr outStream,
|
H A D | pkg_algo_deflate.h | 40 int32_t Unpack(const PkgStreamPtr inStream,
|
H A D | pkg_algorithm.h | 74 virtual int32_t Unpack(const PkgStreamPtr inStream, const PkgStreamPtr outStream,
|
H A D | pkg_algorithm.cpp | 106 int32_t PkgAlgorithm::Unpack(const PkgStreamPtr inStream, const PkgStreamPtr outStream,
in Unpack() function in Hpackage::PkgAlgorithm
|
H A D | pkg_algo_lz4.cpp | 195 int32_t PkgAlgorithmBlockLz4::Unpack(const PkgStreamPtr inStream, const PkgStreamPtr outStream,
in Unpack() function in Hpackage::PkgAlgorithmBlockLz4 443 int32_t PkgAlgorithmLz4::Unpack(const PkgStreamPtr inStream, const PkgStreamPtr outStream,
in Unpack() function in Hpackage::PkgAlgorithmLz4
|
H A D | pkg_algo_deflate.cpp | 197 int32_t PkgAlgoDeflate::Unpack(const PkgStreamPtr inStream, const PkgStreamPtr outStream,
in Unpack() function in Hpackage::PkgAlgoDeflate
|
/base/update/updater/services/package/pkg_package/ |
H A D | pkg_gzipfile.h | 50 int32_t Unpack(PkgStreamPtr outStream) override;
|
H A D | pkg_lz4file.h | 46 int32_t Unpack(PkgStreamPtr outStream) override;
|
H A D | pkg_lz4file.cpp | 77 int32_t Lz4FileEntry::Unpack(PkgStreamPtr outStream)
in Unpack() function in Hpackage::Lz4FileEntry 81 PKG_LOGE("Lz4FileEntry::Unpack : can not algorithm for %s", fileInfo_.fileInfo.identity.c_str());
in Unpack() 87 PKG_LOGE("Lz4FileEntry::Unpack : outStream or inStream null for %s", fileInfo_.fileInfo.identity.c_str());
in Unpack() 95 int32_t ret = algorithm->Unpack(inStream, outStream, context);
in Unpack()
|
H A D | pkg_pkgfile.cpp | 83 return entry->Unpack(output);
in ExtractFile()
|
H A D | pkg_upgradefile.h | 85 int32_t Unpack(PkgStreamPtr outStream) override;
|
H A D | pkg_zipfile.h | 146 int32_t Unpack(PkgStreamPtr outStream) override;
|
H A D | pkg_gzipfile.cpp | 195 int32_t GZipFileEntry::Unpack(PkgStreamPtr outStream)
in Unpack() function in Hpackage::GZipFileEntry 217 int32_t ret = algorithm->Unpack(inStream, outStream, context);
in Unpack()
|
H A D | pkg_zipfile.cpp | 662 int32_t ZipFileEntry::Unpack(PkgStreamPtr outStream)
in Unpack() function in Hpackage::ZipFileEntry 666 PKG_LOGE("ZipFileEntry::Unpack : can not algorithm for %s", fileInfo_.fileInfo.identity.c_str());
in Unpack() 672 PKG_LOGE("ZipFileEntry::Unpack : outStream or inStream null for %s", fileInfo_.fileInfo.identity.c_str());
in Unpack() 683 ret = algorithm->Unpack(inStream, outStream, context);
in Unpack()
|
H A D | pkg_upgradefile.cpp | 921 int32_t UpgradeFileEntry::Unpack(PkgStreamPtr outStream)
in Unpack() function in Hpackage::UpgradeFileEntry 952 PKG_LOGI("Unpack %s data offset:%zu packedSize:%zu unpackedSize:%zu", fileName_.c_str(), dataOffset_,
in Unpack()
|
/base/update/updater/services/include/package/ |
H A D | pkg_manager.h | 163 virtual int32_t Unpack(PkgStreamPtr outStream) = 0;
|
/base/update/updater/services/package/pkg_manager/ |
H A D | pkg_managerImpl.cpp | 917 int32_t ret = algorithm->Unpack(inStream.get(), PkgStreamImpl::ConvertPkgStream(stream), context);
in DoCreatePkgStream()
|