Home
last modified time | relevance | path

Searched refs:targetHost (Results 1 – 6 of 6) sorted by relevance

/external/apache-http/src/org/apache/http/conn/routing/
DRouteTracker.java53 private final HttpHost targetHost; field in RouteTracker
92 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()
DHttpRoute.java54 private final HttpHost targetHost; field in HttpRoute
114 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()
/external/apache-http/src/org/apache/http/client/protocol/
DRequestAddCookies.java104 HttpHost targetHost = (HttpHost) context.getAttribute( in process() local
106 if (targetHost == null) { in process()
134 String hostName = targetHost.getHostName(); in process()
135 int port = targetHost.getPort(); in process()
/external/apache-http/src/org/apache/http/impl/conn/
DDefaultClientConnection.java77 private HttpHost targetHost; field in DefaultClientConnection
92 return this.targetHost; in getTargetHost()
111 this.targetHost = target; in opening()
227 targetHost = target; in update()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPTransactionStack.java1350 Host targetHost = new Host(); in createMessageChannel() local
1351 targetHost.setHostname(nextHop.getHost()); in createMessageChannel()
1353 targetHostPort.setHost(targetHost); in createMessageChannel()
2005 Host targetHost; in createRawMessageChannel() local
2012 targetHost = new Host(); in createRawMessageChannel()
2013 targetHost.setHostname(nextHop.getHost()); in createRawMessageChannel()
2015 targetHostPort.setHost(targetHost); in createRawMessageChannel()
DMessageProcessor.java292 public abstract MessageChannel createMessageChannel(InetAddress targetHost, in createMessageChannel() argument