Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/javax/crypto/
DCipherInputStream.java42 private int outputLength; // count of the bytes to return from outputBuffer field in CipherInputStream
91 outputLength = 0; in fillBuffer()
92 while (outputLength == 0) { in fillBuffer()
102 outputLength = cipher.doFinal(outputBuffer, 0); in fillBuffer()
107 return outputLength != 0; in fillBuffer()
110 outputLength = cipher.update(inputBuffer, 0, byteCount, outputBuffer, 0); in fillBuffer()
130 if (outputIndex == outputLength && !fillBuffer()) { in read()
155 if (outputIndex == outputLength && !fillBuffer()) { in read()
158 int available = outputLength - outputIndex; in read()
176 return outputLength - outputIndex; in available()