Searched refs:getRemoteAddress (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpExchangeImpl.java89 public InetSocketAddress getRemoteAddress (){ method in class:HttpExchangeImpl
90 return impl.getRemoteAddress();
H A DHttpsExchangeImpl.java89 public InetSocketAddress getRemoteAddress (){ method in class:HttpsExchangeImpl
90 return impl.getRemoteAddress();
H A DExchangeImpl.java316 public InetSocketAddress getRemoteAddress (){ method in class:ExchangeImpl
/openjdk7/jdk/test/java/nio/channels/etc/
H A DNetworkChannelTests.java113 * Exercise getRemoteAddress method (SocketChannel only)
125 if (sc.getRemoteAddress() != null)
126 throw new RuntimeException("getRemoteAddress returned address when not connected");
130 SocketAddress remote = sc.getRemoteAddress();
132 throw new RuntimeException("getRemoteAddress returned incorrect address");
137 sc.getRemoteAddress();
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpExchange.java191 public abstract InetSocketAddress getRemoteAddress (); method in class:HttpExchange
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DLogFilter.java56 s = s +" " + t.getResponseCode () +" " + t.getRemoteAddress();
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpExchange.java224 public abstract InetSocketAddress getRemoteAddress(); method in class:HttpExchange
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DDatagramChannel.java331 public abstract SocketAddress getRemoteAddress() throws IOException; method in class:DatagramChannel
H A DSocketChannel.java450 public abstract SocketAddress getRemoteAddress() throws IOException; method in class:SocketChannel
H A DAsynchronousSocketChannel.java50 * #getRemoteAddress getRemoteAddress} method. An attempt to invoke an I/O
271 public abstract SocketAddress getRemoteAddress() throws IOException; method in class:AsynchronousSocketChannel
311 * @see #getRemoteAddress
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/6725892/
H A DTest.java53 InetSocketAddress rem = t.getRemoteAddress();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousSocketChannelImpl.java517 public final SocketAddress getRemoteAddress() throws IOException { method in class:AsynchronousSocketChannelImpl
H A DSocketChannelImpl.java154 public SocketAddress getRemoteAddress() throws IOException { method in class:SocketChannelImpl
H A DDatagramChannelImpl.java177 public SocketAddress getRemoteAddress() throws IOException { method in class:DatagramChannelImpl
/openjdk7/jdk/test/java/nio/channels/AsynchronousSocketChannel/
H A DBasic.java184 InetSocketAddress remote = (InetSocketAddress)ch.getRemoteAddress();

Completed in 317 milliseconds