Searched refs:proxyProperties (Results 1 – 10 of 10) sorted by relevance
/aosp12/packages/modules/Connectivity/service/src/com/android/server/connectivity/ |
H A D | ProxyTracker.java | 190 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()
|
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
H A D | IpConfigStoreTestWriter.java | 93 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()
|
/aosp12/frameworks/base/services/core/java/com/android/server/net/ |
H A D | IpConfigStore.java | 127 ProxyInfo proxyProperties = config.getHttpProxy(); in writeConfig() local 129 proxyProperties.getExclusionList()); in writeConfig() 133 out.writeUTF(proxyProperties.getHost()); in writeConfig() 135 out.writeInt(proxyProperties.getPort()); in writeConfig()
|
/aosp12/packages/modules/Connectivity/core/java/android/net/ |
H A D | ProxyInfo.java | 357 ProxyInfo proxyProperties = 359 return proxyProperties;
|
/aosp12/packages/modules/Connectivity/framework/src/android/net/ |
H A D | ProxyInfo.java | 362 ProxyInfo proxyProperties = new ProxyInfo(host, port, exclList, parsedExclList); 363 return proxyProperties;
|
/aosp12/packages/modules/Connectivity/services/core/java/com/android/server/ |
H A D | ConnectivityService.java | 3723 public void setGlobalProxy(ProxyInfo proxyProperties) { in setGlobalProxy() argument 3727 if (proxyProperties == mGlobalProxy) return; in setGlobalProxy() 3728 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return; in setGlobalProxy() 3735 if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) || in setGlobalProxy() 3737 if (!proxyProperties.isValid()) { in setGlobalProxy() 3766 proxyProperties = mDefaultProxy; in setGlobalProxy() 3768 sendProxyBroadcast(proxyProperties); in setGlobalProxy() 3779 ProxyInfo proxyProperties; in loadGlobalProxy() local 3781 proxyProperties = new ProxyInfo(pacFileUrl); in loadGlobalProxy() 3785 if (!proxyProperties.isValid()) { in loadGlobalProxy() [all …]
|
/aosp12/packages/apps/Settings/src/com/android/settings/wifi/ |
H A D | WifiConfigController.java | 1435 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()
|
H A D | WifiConfigController2.java | 1414 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()
|
/aosp12/packages/modules/Connectivity/service/src/com/android/server/ |
H A D | ConnectivityService.java | 5219 public void setGlobalProxy(@Nullable final ProxyInfo proxyProperties) { in setGlobalProxy() argument 5221 mProxyTracker.setGlobalProxy(proxyProperties); in setGlobalProxy()
|
/aosp12/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
H A D | DevicePolicyManagerService.java | 7531 ProxyInfo proxyProperties = ProxyInfo.buildDirectProxy(data[0], proxyPort, 7533 if (!proxyProperties.isValid()) { 7534 Slogf.e(LOG_TAG, "Invalid proxy properties, ignoring: " + proxyProperties.toString());
|