Searched refs:remoteAddress (Results 1 – 9 of 9) sorted by relevance
58 protected volatile InetSocketAddress remoteAddress = null; field in AsynchronousSocketChannelImpl104 this.remoteAddress = remote; in AsynchronousSocketChannelImpl()240 if (remoteAddress == null) in read()345 if (remoteAddress == null) in write()528 return remoteAddress; in getRemoteAddress()535 if (remoteAddress == null) in shutdownInput()553 if (remoteAddress == null) in shutdownOutput()596 if (remoteAddress != null) { in toString()598 sb.append(remoteAddress.toString()); in toString()
110 private InetSocketAddress remoteAddress; field in SocketChannelImpl171 this.remoteAddress = remote; in SocketChannelImpl()200 return remoteAddress; in getRemoteAddress()602 public SocketAddress remoteAddress() { in remoteAddress() method in SocketChannelImpl604 return remoteAddress; in remoteAddress()711 remoteAddress = isa; in connect()1076 if (remoteAddress() != null) { in toString()1078 sb.append(remoteAddress().toString()); in toString()
124 return dc.remoteAddress() != null; in isConnected()129 ? Net.asInetSocketAddress(dc.remoteAddress()).getAddress() in getInetAddress()135 ? Net.asInetSocketAddress(dc.remoteAddress()).getPort() in getPort()153 dc.remoteAddress(); in send()
99 private InetSocketAddress remoteAddress; field in DatagramChannelImpl206 return remoteAddress; in getRemoteAddress()488 if (!target.equals(remoteAddress)) { in send()699 public SocketAddress remoteAddress() { in remoteAddress() method in DatagramChannelImpl701 return remoteAddress; in remoteAddress()780 remoteAddress = isa; in connect()819 InetSocketAddress isa = remoteAddress; in disconnect()826 remoteAddress = null; in disconnect()
155 SocketAddress remote = sc.remoteAddress(); in getInetAddress()178 SocketAddress remote = sc.remoteAddress(); in getPort()
500 static InetSocketAddress remoteAddress(FileDescriptor fd)
268 remoteAddress = (InetSocketAddress)pendingRemote; in setConnected()
769 InetSocketAddress remoteAddress = (InetSocketAddress) s.getRemoteSocketAddress(); in test_getLocalSocketAddress_unbound() local770 assertNull(remoteAddress); in test_getLocalSocketAddress_unbound()
65 InetSocketAddress remoteAddress = new InetSocketAddress("localhost", ss.getLocalPort()); in test_connect() local66 Future<Void> connectFuture = asc.connect(remoteAddress); in test_connect()