/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | AsynchronousSocketChannelTest.java | 61 assertNull(asc.getRemoteAddress()); in test_connect() 72 assertNotNull(asc.getRemoteAddress()); in test_connect() 73 assertEquals(asc.getRemoteAddress(), s.getLocalSocketAddress()); in test_connect() 86 assertNull(asc.getRemoteAddress()); in test_bind() 92 assertNull(asc.getRemoteAddress()); in test_bind() 111 assertNull(asc.getRemoteAddress()); in test_bind_unsupportedAddress() 127 assertNull(asc.getRemoteAddress()); in test_bind_unresolvedAddress() 142 assertNull(asc.getRemoteAddress()); in test_bind_usedAddress() 154 assertNull(asc.getRemoteAddress()); in test_bind_null() 168 assertNull(asc.getRemoteAddress()); in test_connect_unresolvedAddress() [all …]
|
D | AsynchronousServerSocketChannelTest.java | 121 assertNotNull(asc.getRemoteAddress()); in test_futureAccept() 122 assertEquals(asc.getRemoteAddress(), s.getLocalSocketAddress()); in test_futureAccept() 146 assertNotNull(asc.getRemoteAddress()); in test_completionHandlerAccept() 147 assertEquals(asc.getRemoteAddress(), s.getLocalSocketAddress()); in test_completionHandlerAccept()
|
D | DatagramChannelTest.java | 231 assertNull(clientChannel.getRemoteAddress()); in test_getRemoteAddress() 235 ((InetSocketAddress) (clientChannel.getRemoteAddress())).getAddress()); in test_getRemoteAddress() 237 ((InetSocketAddress) (clientChannel.getRemoteAddress())).getPort()); in test_getRemoteAddress()
|
D | SocketChannelTest.java | 342 assertNull(sc.getRemoteAddress()); in test_getRemoteAddress() 345 assertEquals(sc.getRemoteAddress(), ss.getLocalSocketAddress()); in test_getRemoteAddress()
|
D | OldSocketChannelTest.java | 415 public SocketAddress getRemoteAddress() throws IOException { in getRemoteAddress() method in OldSocketChannelTest.MockSocketChannel
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
D | MockSocketChannel.java | 90 public SocketAddress getRemoteAddress() throws IOException { in getRemoteAddress() method in MockSocketChannel
|
D | MockDatagramChannel.java | 100 public SocketAddress getRemoteAddress() throws IOException { in getRemoteAddress() method in MockDatagramChannel
|
D | SocketChannelTest.java | 3813 public SocketAddress getRemoteAddress() throws IOException { in getRemoteAddress() method in SocketChannelTest.MockSocketChannel
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
D | DatagramChannel.java | 334 public abstract SocketAddress getRemoteAddress() throws IOException; in getRemoteAddress() method in DatagramChannel
|
D | SocketChannel.java | 459 public abstract SocketAddress getRemoteAddress() throws IOException; in getRemoteAddress() method in SocketChannel
|
D | AsynchronousSocketChannel.java | 280 public abstract SocketAddress getRemoteAddress() throws IOException; in getRemoteAddress() method in AsynchronousSocketChannel
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | AsynchronousSocketChannelImpl.java | 525 public final SocketAddress getRemoteAddress() throws IOException { in getRemoteAddress() method in AsynchronousSocketChannelImpl
|
D | SocketChannelImpl.java | 196 public SocketAddress getRemoteAddress() throws IOException { in getRemoteAddress() method in SocketChannelImpl
|
D | DatagramChannelImpl.java | 202 public SocketAddress getRemoteAddress() throws IOException { in getRemoteAddress() method in DatagramChannelImpl
|