Searched defs:httpProxy (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/net/
H A DIpConfiguration.java52 * with httpProxy. */
64 public ProxyInfo httpProxy; field in class:IpConfiguration
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;
66 init(IpAssignment ipAssignment, ProxySettings proxySettings, StaticIpConfiguration staticIpConfiguration, ProxyInfo httpProxy) argument
82 IpConfiguration(IpAssignment ipAssignment, ProxySettings proxySettings, StaticIpConfiguration staticIpConfiguration, ProxyInfo httpProxy) argument
125 setHttpProxy(ProxyInfo httpProxy) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java1947 * @return a {@link ProxyInfo httpProxy} representing the proxy specified by this
1954 return new ProxyInfo(mIpConfiguration.httpProxy);
1963 * @param httpProxy {@link ProxyInfo} representing the httpProxy to be used by this
1966 * @exception IllegalArgumentException for invalid httpProxy
1968 public void setHttpProxy(ProxyInfo httpProxy) { argument
1969 if (httpProxy == null) {
1976 if (!Uri.EMPTY.equals(httpProxy.getPacFileUrl())) {
1979 httpProxyCopy = new ProxyInfo(httpProxy.getPacFileUrl(), httpProxy
[all...]

Completed in 84 milliseconds