Home | History | Annotate | Download | only in routing

Lines Matching refs:proxyChain

63     private final HttpHost[] proxyChain;
116 this.proxyChain = proxies;
271 return (proxyChain == null) ? 1 : (proxyChain.length+1);
288 result = this.proxyChain[hop];
298 return (this.proxyChain == null) ? null : this.proxyChain[0];
354 ( this.proxyChain == that.proxyChain) ||
355 ((this.proxyChain != null) &&
356 (that.proxyChain != null) &&
357 (this.proxyChain.length == that.proxyChain.length));
365 if (equal && (this.proxyChain != null)) {
366 for (int i=0; equal && (i<this.proxyChain.length); i++)
367 equal = this.proxyChain[i].equals(that.proxyChain[i]);
386 if (this.proxyChain != null) {
387 hc ^= proxyChain.length;
388 for (HttpHost aProxyChain : proxyChain) hc ^= aProxyChain.hashCode();
423 if (this.proxyChain != null) {
424 for (HttpHost aProxyChain : this.proxyChain) {