Home | History | Annotate | Download | only in routing

Lines Matching defs:proxyChain

68     private final HttpHost[] proxyChain;
121 this.proxyChain = proxies;
276 return (proxyChain == null) ? 1 : (proxyChain.length+1);
293 result = this.proxyChain[hop];
303 return (this.proxyChain == null) ? null : this.proxyChain[0];
359 ( this.proxyChain == that.proxyChain) ||
360 ((this.proxyChain != null) &&
361 (that.proxyChain != null) &&
362 (this.proxyChain.length == that.proxyChain.length));
370 if (equal && (this.proxyChain != null)) {
371 for (int i=0; equal && (i<this.proxyChain.length); i++)
372 equal = this.proxyChain[i].equals(that.proxyChain[i]);
391 if (this.proxyChain != null) {
392 hc ^= proxyChain.length;
393 for (HttpHost aProxyChain : proxyChain) hc ^= aProxyChain.hashCode();
428 if (this.proxyChain != null) {
429 for (HttpHost aProxyChain : this.proxyChain) {