Home
last modified time | relevance | path

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

/packages/modules/Connectivity/service/src/com/android/server/connectivity/
DProxyTracker.java190 ProxyInfo proxyProperties; in loadGlobalProxy() local
192 proxyProperties = ProxyInfo.buildPacProxy(Uri.parse(pacFileUrl)); in loadGlobalProxy()
194 proxyProperties = ProxyInfo.buildDirectProxy(host, port, in loadGlobalProxy()
197 if (!proxyProperties.isValid()) { in loadGlobalProxy()
198 if (DBG) Log.d(TAG, "Invalid proxy properties, ignoring: " + proxyProperties); in loadGlobalProxy()
203 mGlobalProxy = proxyProperties; in loadGlobalProxy()
208 () -> mPacProxyManager.setCurrentProxyScriptUrl(proxyProperties)); in loadGlobalProxy()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DIpConfigStoreTestWriter.java93 ProxyInfo proxyProperties = config.httpProxy; in writeConfig() local
94 String exclusionList = proxyProperties.getExclusionListAsString(); in writeConfig()
98 out.writeUTF(proxyProperties.getHost()); in writeConfig()
100 out.writeInt(proxyProperties.getPort()); in writeConfig()
/packages/modules/Connectivity/framework/src/android/net/
DProxyInfo.java362 ProxyInfo proxyProperties = new ProxyInfo(host, port, exclList, parsedExclList);
363 return proxyProperties;
/packages/apps/Settings/src/com/android/settings/wifi/
DWifiConfigController2.java1414 ProxyInfo proxyProperties = config.getHttpProxy(); in showProxyFields() local
1415 if (proxyProperties != null) { in showProxyFields()
1416 mProxyHostView.setText(proxyProperties.getHost()); in showProxyFields()
1417 mProxyPortView.setText(Integer.toString(proxyProperties.getPort())); in showProxyFields()
1419 ProxyUtils.exclusionListAsString(proxyProperties.getExclusionList())); in showProxyFields()
DWifiConfigController.java1435 ProxyInfo proxyProperties = config.getHttpProxy(); in showProxyFields() local
1436 if (proxyProperties != null) { in showProxyFields()
1437 mProxyHostView.setText(proxyProperties.getHost()); in showProxyFields()
1438 mProxyPortView.setText(Integer.toString(proxyProperties.getPort())); in showProxyFields()
1440 ProxyUtils.exclusionListAsString(proxyProperties.getExclusionList())); in showProxyFields()
/packages/modules/Connectivity/service/src/com/android/server/
DConnectivityService.java5198 public void setGlobalProxy(@Nullable final ProxyInfo proxyProperties) { in setGlobalProxy() argument
5200 mProxyTracker.setGlobalProxy(proxyProperties); in setGlobalProxy()