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.java58 private final HttpHost targetHost; field in RouteTracker
97 this.targetHost = target; in RouteTracker()
221 return this.targetHost; in getTargetHost()
260 result = this.targetHost; in getHopTarget()
318 null : new HttpRoute(this.targetHost, this.localAddress, in toRoute()
340 boolean equal = this.targetHost.equals(that.targetHost); in equals()
378 int hc = this.targetHost.hashCode(); in hashCode()
430 cab.append(this.targetHost); in toString()
DHttpRoute.java59 private final HttpHost targetHost; field in HttpRoute
119 this.targetHost = target; in HttpRoute()
264 return this.targetHost; in getTargetHost()
295 result = this.targetHost; in getHopTarget()
353 boolean equal = this.targetHost.equals(that.targetHost); in equals()
387 int hc = this.targetHost.hashCode(); in hashCode()
434 cab.append(this.targetHost); in toString()
/external/apache-http/src/org/apache/http/client/protocol/
DRequestAddCookies.java109 HttpHost targetHost = (HttpHost) context.getAttribute( in process() local
111 if (targetHost == null) { in process()
139 String hostName = targetHost.getHostName(); in process()
140 int port = targetHost.getPort(); in process()
/external/apache-http/src/org/apache/http/impl/conn/
DDefaultClientConnection.java82 private HttpHost targetHost; field in DefaultClientConnection
97 return this.targetHost; in getTargetHost()
116 this.targetHost = target; in opening()
232 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