Home | History | Annotate | Download | only in net

Lines Matching defs:httpProxy

52          * with httpProxy. */
64 public ProxyInfo httpProxy;
69 ProxyInfo httpProxy) {
74 this.httpProxy = (httpProxy == null) ?
75 null : new ProxyInfo(httpProxy);
85 ProxyInfo httpProxy) {
86 init(ipAssignment, proxySettings, staticIpConfiguration, httpProxy);
93 source.staticIpConfiguration, source.httpProxy);
122 return httpProxy;
125 public void setHttpProxy(ProxyInfo httpProxy) {
126 this.httpProxy = httpProxy;
140 if (httpProxy != null) {
141 sbuf.append("HTTP proxy: " + httpProxy.toString());
162 Objects.equals(this.httpProxy, other.httpProxy);
170 83 * httpProxy.hashCode();
183 dest.writeParcelable(httpProxy, flags);
194 config.httpProxy = in.readParcelable(null);