Home
last modified time | relevance | path

Searched refs:proxyInfo (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/net/
DNetwork.java250 ProxyInfo proxyInfo = cm.getGlobalProxy(); in openConnection() local
251 if (proxyInfo == null) { in openConnection()
254 if (lp != null) proxyInfo = lp.getHttpProxy(); in openConnection()
257 if (proxyInfo != null) { in openConnection()
258 proxy = proxyInfo.makeProxy(); in openConnection()
/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkMonitor.java678 final ProxyInfo proxyInfo = mNetworkAgentInfo.linkProperties.getHttpProxy(); in isCaptivePortal() local
679 if (proxyInfo != null && !Uri.EMPTY.equals(proxyInfo.getPacFileUrl())) { in isCaptivePortal()
680 url = new URL(proxyInfo.getPacFileUrl().toString()); in isCaptivePortal()
/frameworks/base/services/core/java/com/android/server/net/
DIpConfigStore.java292 ProxyInfo proxyInfo = in readIpAndProxyConfigurations() local
295 config.httpProxy = proxyInfo; in readIpAndProxyConfigurations()
/frameworks/base/core/java/android/app/admin/
DIDevicePolicyManager.aidl85 void setRecommendedGlobalProxy(in ComponentName admin, in ProxyInfo proxyInfo); in setRecommendedGlobalProxy() argument
DDevicePolicyManager.java1615 public void setRecommendedGlobalProxy(ComponentName admin, ProxyInfo proxyInfo) { in setRecommendedGlobalProxy() argument
1618 mService.setRecommendedGlobalProxy(admin, proxyInfo); in setRecommendedGlobalProxy()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java3315 public void setRecommendedGlobalProxy(ComponentName who, ProxyInfo proxyInfo) { in setRecommendedGlobalProxy() argument
3323 connectivityManager.setGlobalProxy(proxyInfo); in setRecommendedGlobalProxy()
/frameworks/base/core/java/android/app/
DActivityThread.java4451 final ProxyInfo proxyInfo = service.getDefaultProxy(); in handleBindApplication() local
4452 Proxy.setHttpProxySystemProperty(proxyInfo); in handleBindApplication()