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

/frameworks/base/core/java/android/webkit/
H A DJWebCoreJavaBridge.java296 public void updateProxy(ProxyProperties proxyProperties) { argument
297 if (proxyProperties == null) {
302 String host = proxyProperties.getHost();
303 int port = proxyProperties.getPort();
307 nativeUpdateProxy(host, proxyProperties.getExclusionList());
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java3054 public void setGlobalProxy(ProxyProperties proxyProperties) { argument
3057 if (proxyProperties == mGlobalProxy) return;
3058 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
3059 if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
3064 if (proxyProperties != null && !TextUtils.isEmpty(proxyProperties.getHost())) {
3065 mGlobalProxy = new ProxyProperties(proxyProperties);
3080 proxyProperties = mDefaultProxy;
3082 //sendProxyBroadcast(proxyProperties);
[all...]

Completed in 39 milliseconds