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

Method writeSetEncodings

java/com/tigervnc/rfb/CMsgWriter.java:49–57  ·  view source on GitHub ↗
(List<Integer> encodings)

Source from the content-addressed store, hash-verified

47 }
48
49 synchronized public void writeSetEncodings(List<Integer> encodings)
50 {
51 startMsg(MsgTypes.msgTypeSetEncodings);
52 os.skip(1);
53 os.writeU16(encodings.size());
54 for (Iterator<Integer> i = encodings.iterator(); i.hasNext();)
55 os.writeU32(i.next());
56 endMsg();
57 }
58
59 synchronized public void writeSetDesktopSize(int width, int height,
60 ScreenSet layout)

Callers 1

updateEncodingsMethod · 0.45

Calls 7

startMsgMethod · 0.95
endMsgMethod · 0.95
skipMethod · 0.45
writeU16Method · 0.45
sizeMethod · 0.45
writeU32Method · 0.45
nextMethod · 0.45

Tested by

no test coverage detected