Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/util/apk/
DApkSignatureSchemeV2Verifier.java463 long totalChunkCountLong = 0; in computeContentDigests() local
465 totalChunkCountLong += getChunkCount(input.size()); in computeContentDigests()
467 if (totalChunkCountLong >= Integer.MAX_VALUE / 1024) { in computeContentDigests()
468 throw new DigestException("Too many chunks: " + totalChunkCountLong); in computeContentDigests()
470 int totalChunkCount = (int) totalChunkCountLong; in computeContentDigests()