MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / readFully

Method readFully

src/gnu/zip/ZipInputStream.java:96–108  ·  view source on GitHub ↗
(byte[] out)

Source from the content-addressed store, hash-verified

94 }
95
96 private void readFully(byte[] out) throws IOException
97 {
98 int off = 0;
99 int len = out.length;
100 while (len > 0)
101 {
102 int count = readBuf(out, off, len);
103 if (count == -1)
104 throw new EOFException();
105 off += count;
106 len -= count;
107 }
108 }
109
110 private int readLeByte() throws IOException
111 {

Callers 1

getNextEntryMethod · 0.95

Calls 1

readBufMethod · 0.95

Tested by

no test coverage detected