HomeSort by relevance Sort by last modified time
    Searched full:encstart (Results 1 - 1 of 1) sorted by null

  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 591 final long encStart = encryptionParams.getEncryptedDataStart();
593 if (end < encStart) {
594 throw new IOException("end <= encStart");
605 if (macStart >= 0 && encStart >= 0 && macStart < encStart) {
610 final long authenticatedLengthLong = encStart - macStart;
628 if (encStart > 0) {
629 furtherOffset = encStart;
640 inStream = new LimitedLengthInputStream(inStream, furtherOffset, end - encStart);
649 if (encStart >= 0)
    [all...]

Completed in 228 milliseconds