HomeSort by relevance Sort by last modified time
    Searched refs:lastRead (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java 83 private int inRead, lastRead = 0;
180 lastRead = inRead = entryIn = len = 0;
312 if (lastRead >= len) {
313 lastRead = 0;
320 int toRead = byteCount > (len - lastRead) ? len - lastRead : byteCount;
324 System.arraycopy(buf, lastRead, buffer, offset, toRead);
325 lastRead += toRead;
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetDecoder.java 116 * @param lastRead Last byte read from the input buffer
120 private CoderResult handleBase64(ByteBuffer in, CharBuffer out, byte lastRead) {
122 int sextet = base64.getSextet(lastRead);
136 out.put((char)lastRead);
  /frameworks/base/core/java/android/content/pm/
IPackageManager.aidl 130 ParceledListSlice getInstalledPackages(int flags, in String lastRead, in int userId);
138 ParceledListSlice getInstalledApplications(int flags, in String lastRead, int userId);
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java     [all...]

Completed in 1162 milliseconds