Searched refs:targetHost (Results 1 – 6 of 6) sorted by relevance
53 private final HttpHost targetHost; field in RouteTracker92 this.targetHost = target; in RouteTracker()216 return this.targetHost; in getTargetHost()255 result = this.targetHost; in getHopTarget()313 null : new HttpRoute(this.targetHost, this.localAddress, in toRoute()335 boolean equal = this.targetHost.equals(that.targetHost); in equals()373 int hc = this.targetHost.hashCode(); in hashCode()425 cab.append(this.targetHost); in toString()
54 private final HttpHost targetHost; field in HttpRoute114 this.targetHost = target; in HttpRoute()259 return this.targetHost; in getTargetHost()290 result = this.targetHost; in getHopTarget()348 boolean equal = this.targetHost.equals(that.targetHost); in equals()382 int hc = this.targetHost.hashCode(); in hashCode()429 cab.append(this.targetHost); in toString()
104 HttpHost targetHost = (HttpHost) context.getAttribute( in process() local106 if (targetHost == null) { in process()134 String hostName = targetHost.getHostName(); in process()135 int port = targetHost.getPort(); in process()
77 private HttpHost targetHost; field in DefaultClientConnection92 return this.targetHost; in getTargetHost()111 this.targetHost = target; in opening()227 targetHost = target; in update()
1350 Host targetHost = new Host(); in createMessageChannel() local1351 targetHost.setHostname(nextHop.getHost()); in createMessageChannel()1353 targetHostPort.setHost(targetHost); in createMessageChannel()2005 Host targetHost; in createRawMessageChannel() local2012 targetHost = new Host(); in createRawMessageChannel()2013 targetHost.setHostname(nextHop.getHost()); in createRawMessageChannel()2015 targetHostPort.setHost(targetHost); in createRawMessageChannel()
292 public abstract MessageChannel createMessageChannel(InetAddress targetHost, in createMessageChannel() argument