Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/inputmethod/
DInputMethodSubtypeArray.java218 int totalReadBytes = 0; in decompress() local
219 while (totalReadBytes < result.length) { in decompress()
220 final int restBytes = result.length - totalReadBytes; in decompress()
221 final int readBytes = unzipper.read(result, totalReadBytes, restBytes); in decompress()
225 totalReadBytes += readBytes; in decompress()
227 if (expectedSize != totalReadBytes) { in decompress()