Home
last modified time | relevance | path

Searched refs:currentSizeOut (Results 1 – 1 of 1) sorted by relevance

/packages/modules/adb/fastdeploy/deploypatchgenerator/
Ddeploy_patch_generator.cpp135 size_t currentSizeOut = 0; in GeneratePatch() local
151 int64_t deltaFromDeviceDataStart = hostDataOffset - currentSizeOut; in GeneratePatch()
161 currentSizeOut += deltaFromDeviceDataStart + hostDataLength; in GeneratePatch()
164 if (realSizeOut != currentSizeOut) { in GeneratePatch()
166 static_cast<long long>(currentSizeOut), static_cast<long long>(realSizeOut)); in GeneratePatch()
170 if (newApkSize > currentSizeOut) { in GeneratePatch()
171 PatchUtils::WriteLong(newApkSize - currentSizeOut, output); in GeneratePatch()
172 PatchUtils::Pipe(input, output, newApkSize - currentSizeOut); in GeneratePatch()