Home
last modified time | relevance | path

Searched refs:proxyChain (Results 1 – 2 of 2) sorted by relevance

/external/apache-http/src/org/apache/http/conn/routing/
DRouteTracker.java68 private HttpHost[] proxyChain; field in RouteTracker
141 this.proxyChain = new HttpHost[]{ proxy }; in connectProxy()
156 if (this.proxyChain == null) { in tunnelTarget()
180 if (this.proxyChain == null) { in tunnelProxy()
185 HttpHost[] proxies = new HttpHost[this.proxyChain.length+1]; in tunnelProxy()
186 System.arraycopy(this.proxyChain, 0, in tunnelProxy()
187 proxies, 0, this.proxyChain.length); in tunnelProxy()
190 this.proxyChain = proxies; in tunnelProxy()
230 if (proxyChain == null) in getHopCount()
233 hops = proxyChain.length + 1; in getHopCount()
[all …]
DHttpRoute.java63 private final HttpHost[] proxyChain; field in HttpRoute
116 this.proxyChain = proxies; in HttpRoute()
271 return (proxyChain == null) ? 1 : (proxyChain.length+1); in getHopCount()
288 result = this.proxyChain[hop]; in getHopTarget()
298 return (this.proxyChain == null) ? null : this.proxyChain[0]; in getProxyHost()
354 ( this.proxyChain == that.proxyChain) || in equals()
355 ((this.proxyChain != null) && in equals()
356 (that.proxyChain != null) && in equals()
357 (this.proxyChain.length == that.proxyChain.length)); in equals()
365 if (equal && (this.proxyChain != null)) { in equals()
[all …]