Home
last modified time | relevance | path

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

/frameworks/base/keystore/java/android/security/keystore/
DKeyStoreCryptoOperationChunkedStreamer.java101 int inputBytesInChunk; in update() local
105 inputBytesInChunk = mMaxChunkSize - mBufferedLength; in update()
107 input, inputOffset, inputBytesInChunk); in update()
115 inputBytesInChunk = input.length; in update()
118 inputBytesInChunk = inputLength; in update()
120 input, inputOffset, inputBytesInChunk); in update()
124 inputOffset += inputBytesInChunk; in update()
125 inputLength -= inputBytesInChunk; in update()
126 mConsumedInputSizeBytes += inputBytesInChunk; in update()