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/connectivity/
DProxyTracker.java164 ProxyInfo proxyProperties; in loadGlobalProxy() local
166 proxyProperties = new ProxyInfo(Uri.parse(pacFileUrl)); in loadGlobalProxy()
168 proxyProperties = new ProxyInfo(host, port, exclList); in loadGlobalProxy()
170 if (!proxyProperties.isValid()) { in loadGlobalProxy()
171 if (DBG) Slog.d(TAG, "Invalid proxy properties, ignoring: " + proxyProperties); in loadGlobalProxy()
176 mGlobalProxy = proxyProperties; in loadGlobalProxy()
181 () -> mPacManager.setCurrentProxyScriptUrl(proxyProperties)); in loadGlobalProxy()
/frameworks/base/services/core/java/com/android/server/net/
DIpConfigStore.java125 ProxyInfo proxyProperties = config.httpProxy; in writeConfig() local
126 String exclusionList = proxyProperties.getExclusionListAsString(); in writeConfig()
130 out.writeUTF(proxyProperties.getHost()); in writeConfig()
132 out.writeInt(proxyProperties.getPort()); in writeConfig()
/frameworks/base/core/java/android/net/
DProxyInfo.java359 ProxyInfo proxyProperties = new ProxyInfo(host, port, exclList, parsedExclList);
360 return proxyProperties;
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java4412 public void setGlobalProxy(final ProxyInfo proxyProperties) { in setGlobalProxy() argument
4414 mProxyTracker.setGlobalProxy(proxyProperties); in setGlobalProxy()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java7014 ProxyInfo proxyProperties = new ProxyInfo(data[0], proxyPort, exclusionList); in saveGlobalProxyLocked() local
7015 if (!proxyProperties.isValid()) { in saveGlobalProxyLocked()
7016 Slog.e(LOG_TAG, "Invalid proxy properties, ignoring: " + proxyProperties.toString()); in saveGlobalProxyLocked()