Home
last modified time | relevance | path

Searched refs:proxyProperties (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/net/
DIpConfigStore.java115 ProxyInfo proxyProperties = config.httpProxy; in writeConfig() local
116 String exclusionList = proxyProperties.getExclusionListAsString(); in writeConfig()
120 out.writeUTF(proxyProperties.getHost()); in writeConfig()
122 out.writeInt(proxyProperties.getPort()); in writeConfig()
/frameworks/base/core/java/android/net/
DProxyInfo.java353 ProxyInfo proxyProperties =
355 return proxyProperties;
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java2925 public void setGlobalProxy(ProxyInfo proxyProperties) { in setGlobalProxy() argument
2929 if (proxyProperties == mGlobalProxy) return; in setGlobalProxy()
2930 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return; in setGlobalProxy()
2931 if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return; in setGlobalProxy()
2937 if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) || in setGlobalProxy()
2938 !Uri.EMPTY.equals(proxyProperties.getPacFileUrl()))) { in setGlobalProxy()
2939 if (!proxyProperties.isValid()) { in setGlobalProxy()
2941 log("Invalid proxy properties, ignoring: " + proxyProperties.toString()); in setGlobalProxy()
2944 mGlobalProxy = new ProxyInfo(proxyProperties); in setGlobalProxy()
2948 if (!Uri.EMPTY.equals(proxyProperties.getPacFileUrl())) { in setGlobalProxy()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DConnectivityServiceMock.java669 public void setGlobalProxy(ProxyInfo proxyProperties) { in setGlobalProxy() argument
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java4981 ProxyInfo proxyProperties = new ProxyInfo(data[0], proxyPort, exclusionList); in saveGlobalProxyLocked() local
4982 if (!proxyProperties.isValid()) { in saveGlobalProxyLocked()
4983 Slog.e(LOG_TAG, "Invalid proxy properties, ignoring: " + proxyProperties.toString()); in saveGlobalProxyLocked()