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

Method write

java/com/jcraft/jzlib/ZOutputStream.java:73–76  ·  view source on GitHub ↗
(int b)

Source from the content-addressed store, hash-verified

71
72 private byte[] buf1 = new byte[1];
73 public void write(int b) throws IOException {
74 buf1[0]=(byte)b;
75 write(buf1, 0, 1);
76 }
77
78 public void write(byte b[], int off, int len) throws IOException {
79 if(len==0) return;

Callers 1

finishMethod · 0.95

Calls 4

setInputMethod · 0.80
setOutputMethod · 0.80
writeMethod · 0.65
inflateMethod · 0.45

Tested by

no test coverage detected