/libcore/luni/src/test/java/libcore/java/net/ |
D | ServerSocketTest.java | 51 new Socket(ss.getInetAddress(), ss.getLocalPort()).close(); in testTimeoutAfterAccept() 64 assertNull(ss.getInetAddress()); in testInitialState() 80 assertEquals(boundAddress.getAddress(), ss.getInetAddress()); in testStateAfterClose()
|
D | SocketTest.java | 163 assertEquals(inLocalAddress.getAddress(), ss.getInetAddress()); in checkSocketLocalAndRemoteAddresses() 164 assertEquals(inRemoteAddress.getAddress(), ss.getInetAddress()); in checkSocketLocalAndRemoteAddresses() 165 assertEquals(outLocalAddress.getAddress(), ss.getInetAddress()); in checkSocketLocalAndRemoteAddresses() 166 assertEquals(outRemoteAddress.getAddress(), ss.getInetAddress()); in checkSocketLocalAndRemoteAddresses() 401 assertNull(s.getInetAddress()); in testInitialState()
|
D | OldSocketTest.java | 206 assertTrue("Returned incorrect InetAddress", s.getInetAddress().equals( in test_getInetAddress() 633 Socket theSocket = new Socket(serverSocket.getInetAddress(), serverSocket.getLocalPort()); in test_shutdownOutput() 736 Socket theSocket = new Socket(serverSocket.getInetAddress(), serverSocket.getLocalPort()); in test_isBound() 770 Socket theSocket = new Socket(serverSocket.getInetAddress(), serverSocket.getLocalPort()); in test_isConnected() 792 Socket theSocket = new Socket(serverSocket.getInetAddress(), in test_isClosed() 801 theSocket = new Socket(serverSocket.getInetAddress(), serverSocket.getLocalPort()); in test_isClosed() 1979 new InetSocketAddress(ss.getInetAddress(), ss.getLocalPort())); in test_getOutputStream_shutdownOutput()
|
D | DatagramSocketTest.java | 51 assertNull(ds.getInetAddress()); in testInitialState()
|
/libcore/ojluni/src/main/java/java/net/ |
D | ServerSocket.java | 429 public InetAddress getInetAddress() { in getInetAddress() method in ServerSocket 433 InetAddress in = getImpl().getInetAddress(); in getInetAddress() 500 return new InetSocketAddress(getInetAddress(), getLocalPort()); in getLocalSocketAddress() 575 security.checkAccept(si.getInetAddress().getHostAddress(), in implAccept() 779 in = impl.getInetAddress(); in toString()
|
D | SocketImpl.java | 249 protected InetAddress getInetAddress() { in getInetAddress() method in SocketImpl 318 return "Socket[addr=" + getInetAddress() + in toString()
|
D | Socket.java | 745 public InetAddress getInetAddress() { in getInetAddress() method in Socket 749 return getImpl().getInetAddress(); in getInetAddress() 853 return new InetSocketAddress(getInetAddress(), getPort()); in getRemoteSocketAddress() 1636 return "Socket[address=" + getImpl().getInetAddress() + in toString()
|
D | SocksSocketImpl.java | 1049 protected InetAddress getInetAddress() { in getInetAddress() method in SocksSocketImpl 1053 return super.getInetAddress(); in getInetAddress()
|
D | DatagramSocket.java | 580 public InetAddress getInetAddress() { in getInetAddress() method in DatagramSocket 617 return new InetSocketAddress(getInetAddress(), getPort()); in getRemoteSocketAddress()
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | ServerSocketAdaptor.java | 80 public InetAddress getInetAddress() { in getInetAddress() method in ServerSocketAdaptor 180 return "ServerSocket[addr=" + getInetAddress() + in toString()
|
D | SocketAdaptor.java | 150 public InetAddress getInetAddress() { in getInetAddress() method in SocketAdaptor 432 return "Socket[addr=" + getInetAddress() + in toString()
|
/libcore/ojluni/src/test/java/nio/channels/Selector/ |
D | ByteServer.java | 48 return new InetSocketAddress(ss.getInetAddress(), ss.getLocalPort()); in address()
|
/libcore/ojluni/annotations/mmodule/java/net/ |
D | SocketImpl.annotated.java | 68 protected java.net.InetAddress getInetAddress() { throw new RuntimeException("Stub!"); } in getInetAddress() method in SocketImpl
|
D | ServerSocket.annotated.java | 47 public java.net.InetAddress getInetAddress() { throw new RuntimeException("Stub!"); } in getInetAddress() method in ServerSocket
|
D | DatagramSocket.annotated.java | 58 public java.net.InetAddress getInetAddress() { throw new RuntimeException("Stub!"); } in getInetAddress() method in DatagramSocket
|
D | Socket.annotated.java | 64 public java.net.InetAddress getInetAddress() { throw new RuntimeException("Stub!"); } in getInetAddress() method in Socket
|
/libcore/ojluni/annotations/hiddenapi/java/net/ |
D | SocksSocketImpl.java | 102 protected java.net.InetAddress getInetAddress() { in getInetAddress() method in SocksSocketImpl
|
D | SocketImpl.java | 78 protected java.net.InetAddress getInetAddress() { in getInetAddress() method in SocketImpl
|
D | ServerSocket.java | 78 public java.net.InetAddress getInetAddress() { in getInetAddress() method in ServerSocket
|
D | DatagramSocket.java | 99 public java.net.InetAddress getInetAddress() { in getInetAddress() method in DatagramSocket
|
D | Socket.java | 137 public java.net.InetAddress getInetAddress() { in getInetAddress() method in Socket
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | DatagramSocketTest.java | 153 assertEquals("Incorrect InetAddress", inetAddress, ds.getInetAddress()); in test_connectLjava_net_InetAddressI() 162 assertEquals(inetAddress, ds.getInetAddress()); in test_connectLjava_net_InetAddressI() 333 assertNull("Incorrect InetAddress", ds.getInetAddress()); in test_disconnect() 342 assertNull("Incorrect InetAddress", ds.getInetAddress()); in test_disconnect()
|
D | SocketTest.java | 84 host = socket.getInetAddress().getHostName(); in run() 666 assertTrue("Returned incorrect InetAdrees", client.getInetAddress() in test_getInetAddress() 1026 .getInetAddress(), server.getLocalPort()); in test_isBound() 1105 .getInetAddress(), server.getLocalPort()); in test_isConnected()
|
/libcore/luni/src/test/java/libcore/libcore/io/ |
D | FdsanTest.java | 118 Socket client = new Socket(serverSocket.getInetAddress(), serverSocket.getLocalPort()); in testSocket()
|
/libcore/ojluni/src/test/java/net/DatagramSocket/ |
D | ReuseAddressTest.java | 54 + "; remoteAddress: " + soc.getInetAddress() in getInfo()
|