MCPcopy Create free account
hub / github.com/L-JINBIN/ApkDataMultiplexing / _readInt

Method _readInt

src/bin/zip/ZipFile.java:292–300  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

290 }
291
292 private int _readInt() throws IOException {
293 int ch1 = archive.read();
294 int ch2 = archive.read();
295 int ch3 = archive.read();
296 int ch4 = archive.read();
297 if ((ch1 | ch2 | ch3 | ch4) < 0)
298 throw new EOFException();
299 return (ch1) | (ch2 << 8) | (ch3 << 16) | (ch4 << 24);
300 }
301
302 private int _readUShort() throws IOException {
303 int ch1 = archive.read();

Callers 5

readEntriesMethod · 0.95
readEocdRecordMethod · 0.95
parseZip64EocdRecordMethod · 0.95
_readUIntMethod · 0.95

Calls 1

readMethod · 0.65

Tested by

no test coverage detected