Home
last modified time | relevance | path

Searched refs:hexFakeCookie (Results 1 – 1 of 1) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
DChannelManager.java223 public void registerX11Cookie(String hexFakeCookie, X11ServerData data) in registerX11Cookie() argument
227 x11_magic_cookies.put(hexFakeCookie, data); in registerX11Cookie()
231 public void unRegisterX11Cookie(String hexFakeCookie, boolean killChannels) in unRegisterX11Cookie() argument
233 if (hexFakeCookie == null) in unRegisterX11Cookie()
238 x11_magic_cookies.remove(hexFakeCookie); in unRegisterX11Cookie()
257 if (hexFakeCookie.equals(c.hexX11FakeCookie) == false) in unRegisterX11Cookie()
271 public X11ServerData checkX11Cookie(String hexFakeCookie) in checkX11Cookie() argument
275 if (hexFakeCookie != null) in checkX11Cookie()
276 return x11_magic_cookies.get(hexFakeCookie); in checkX11Cookie()