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.java124 ProxyInfo proxyProperties = config.httpProxy; in writeConfig() local
125 String exclusionList = proxyProperties.getExclusionListAsString(); in writeConfig()
129 out.writeUTF(proxyProperties.getHost()); in writeConfig()
131 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.java3407 public void setGlobalProxy(ProxyInfo proxyProperties) { in setGlobalProxy() argument
3411 if (proxyProperties == mGlobalProxy) return; in setGlobalProxy()
3412 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return; in setGlobalProxy()
3413 if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return; in setGlobalProxy()
3419 if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) || in setGlobalProxy()
3420 !Uri.EMPTY.equals(proxyProperties.getPacFileUrl()))) { in setGlobalProxy()
3421 if (!proxyProperties.isValid()) { in setGlobalProxy()
3423 log("Invalid proxy properties, ignoring: " + proxyProperties.toString()); in setGlobalProxy()
3426 mGlobalProxy = new ProxyInfo(proxyProperties); in setGlobalProxy()
3430 if (!Uri.EMPTY.equals(proxyProperties.getPacFileUrl())) { in setGlobalProxy()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DConnectivityServiceMock.java605 public void setGlobalProxy(ProxyInfo proxyProperties) { in setGlobalProxy() argument
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java6420 ProxyInfo proxyProperties = new ProxyInfo(data[0], proxyPort, exclusionList); in saveGlobalProxyLocked() local
6421 if (!proxyProperties.isValid()) { in saveGlobalProxyLocked()
6422 Slog.e(LOG_TAG, "Invalid proxy properties, ignoring: " + proxyProperties.toString()); in saveGlobalProxyLocked()