MCPcopy Create free account
hub / github.com/TigerVNC/tigervnc / read

Method read

java/com/jcraft/jzlib/ZInputStream.java:66–69  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

64
65 private byte[] buf1 = new byte[1];
66 public int read() throws IOException {
67 if(read(buf1, 0, 1)==-1) return -1;
68 return(buf1[0]&0xFF);
69 }
70
71 private byte[] buf = new byte[512];
72

Callers 1

skipMethod · 0.95

Calls 4

setOutputMethod · 0.80
setInputMethod · 0.80
readMethod · 0.65
deflateMethod · 0.45

Tested by

no test coverage detected