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

Method _skip

src/bin/zip/ZipFile.java:276–284  ·  view source on GitHub ↗
(long length)

Source from the content-addressed store, hash-verified

274 }
275
276 private void _skip(long length) throws IOException {
277 if (length < 0)
278 throw new IOException("Skip " + length);
279 long pos = archive.getFilePointer() + length;
280 long len = archive.length();
281 if (pos > len)
282 throw new EOFException();
283 archive.seek(pos);
284 }
285
286 private byte[] _readBytes(int len) throws IOException {
287 byte[] bytes = new byte[len];

Callers 3

readEntriesMethod · 0.95
parseEocdRecordMethod · 0.95
parseZip64EocdRecordMethod · 0.95

Calls 3

getFilePointerMethod · 0.65
lengthMethod · 0.65
seekMethod · 0.65

Tested by

no test coverage detected