Searched defs:getLocalAddress (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DNetworkChannel.java38 * socket to a local {@link SocketAddress address}, the {@link #getLocalAddress()
39 * getLocalAddress} method returns the address that the socket is bound to, and
85 * @see #getLocalAddress
105 SocketAddress getLocalAddress() throws IOException; method in interface:NetworkChannel
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpExchange.java203 public abstract InetSocketAddress getLocalAddress (); method in class:HttpExchange
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DWrappedSocket.java82 public InetAddress getLocalAddress() { method in class:WrappedSocket
87 return socket.getLocalAddress();
H A DHttpSendSocket.java236 public InetAddress getLocalAddress() method in class:HttpSendSocket
/openjdk7/jdk/src/share/classes/sun/net/
H A DNetworkClient.java200 protected InetAddress getLocalAddress() throws IOException { method in class:NetworkClient
206 return serverSocket.getLocalAddress();
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpExchangeImpl.java93 public InetSocketAddress getLocalAddress (){ method in class:HttpExchangeImpl
94 return impl.getLocalAddress();
H A DHttpsExchangeImpl.java93 public InetSocketAddress getLocalAddress (){ method in class:HttpsExchangeImpl
94 return impl.getLocalAddress();
H A DExchangeImpl.java323 public InetSocketAddress getLocalAddress (){ method in class:ExchangeImpl
325 InetAddress ia = s.getLocalAddress();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousServerSocketChannelImpl.java173 public final SocketAddress getLocalAddress() throws IOException { method in class:AsynchronousServerSocketChannelImpl
H A DDatagramSocketAdaptor.java235 public InetAddress getLocalAddress() { method in class:DatagramSocketAdaptor
257 SocketAddress local = dc.getLocalAddress();
H A DServerSocketChannelImpl.java115 public SocketAddress getLocalAddress() throws IOException { method in class:ServerSocketChannelImpl
H A DSocketAdaptor.java162 public InetAddress getLocalAddress() { method in class:SocketAdaptor
H A DAsynchronousSocketChannelImpl.java442 public final SocketAddress getLocalAddress() throws IOException { method in class:AsynchronousSocketChannelImpl
H A DSocketChannelImpl.java145 public SocketAddress getLocalAddress() throws IOException { method in class:SocketChannelImpl
H A DDatagramChannelImpl.java168 public SocketAddress getLocalAddress() throws IOException { method in class:DatagramChannelImpl
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpExchange.java231 public abstract InetSocketAddress getLocalAddress(); method in class:HttpExchange
/openjdk7/jdk/src/share/classes/java/net/
H A DDatagramSocket.java583 * @see #getLocalAddress()
594 return new InetSocketAddress(getLocalAddress(), getLocalPort());
808 public InetAddress getLocalAddress() { method in class:DatagramSocket
H A DSocket.java689 public InetAddress getLocalAddress() { method in class:Socket
792 * @see #getLocalAddress()
801 return new InetSocketAddress(getLocalAddress(), getLocalPort());
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DBaseSSLSocketImpl.java290 public final InetAddress getLocalAddress() { method in class:BaseSSLSocketImpl
292 return super.getLocalAddress();
294 return self.getLocalAddress();

Completed in 73 milliseconds