Searched defs:readUByte (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
H A DGZIPInputStream.java169 if (readUByte(in) != 8) {
173 int flg = readUByte(in);
187 } while (readUByte(in) != 0);
193 } while (readUByte(in) != 0);
259 int b = readUByte(in);
260 return (readUByte(in) << 8) | b;
266 private int readUByte(InputStream in) throws IOException { method in class:GZIPInputStream

Completed in 98 milliseconds