Searched defs:listenerKey (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpServer.java143 SelectionKey listenerKey; field in class:HttpServer.Server
162 listenerKey = schan.register (selector, SelectionKey.OP_ACCEPT);
181 if (key.equals (listenerKey)) {
194 listenerKey.cancel ();
195 listenerKey = null;
212 listenerKey = schan.register (selector, SelectionKey.OP_ACCEPT);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpServer.java172 SelectionKey listenerKey; field in class:HttpServer.Server
191 listenerKey = schan.register (selector, SelectionKey.OP_ACCEPT);
210 if (key.equals (listenerKey)) {
224 listenerKey.cancel ();
225 listenerKey = null;
239 listenerKey = schan.register (selector, SelectionKey.OP_ACCEPT);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DTunnelProxy.java125 SelectionKey listenerKey; field in class:TunnelProxy.Server
144 listenerKey = schan.register (selector, SelectionKey.OP_ACCEPT);
165 if (key.equals (listenerKey)) {
177 listenerKey.cancel ();
178 listenerKey = null;
193 listenerKey = schan.register (selector, SelectionKey.OP_ACCEPT);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java55 private SelectionKey listenerKey; field in class:ServerImpl
105 listenerKey = schan.register (selector, SelectionKey.OP_ACCEPT);
362 if (key.equals (listenerKey)) {

Completed in 127 milliseconds