HomeSort by relevance Sort by last modified time
    Searched defs:readUByte (Results 1 - 2 of 2) sorted by null

  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 164 public byte readUByte() {
  /libcore/ojluni/src/main/java/java/util/zip/
GZIPInputStream.java 166 if (readUByte(in) != 8) {
170 int flg = readUByte(in);
184 } while (readUByte(in) != 0);
190 } while (readUByte(in) != 0);
253 int b = readUByte(in);
254 return ((int)readUByte(in) << 8) | b;
260 private int readUByte(InputStream in) throws IOException {

Completed in 303 milliseconds