Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DProxyInfo.java105 public ProxyInfo(Uri pacFileUrl) { in ProxyInfo() argument
109 if (pacFileUrl == null) { in ProxyInfo()
112 mPacFileUrl = pacFileUrl; in ProxyInfo()
119 public ProxyInfo(String pacFileUrl) { in ProxyInfo() argument
123 mPacFileUrl = Uri.parse(pacFileUrl); in ProxyInfo()
130 public ProxyInfo(Uri pacFileUrl, int localProxyPort) { in ProxyInfo() argument
134 if (pacFileUrl == null) { in ProxyInfo()
137 mPacFileUrl = pacFileUrl; in ProxyInfo()
DProxy.java246 Uri pacFileUrl = Uri.EMPTY; in setHttpProxySystemProperty() local
251 pacFileUrl = p.getPacFileUrl(); in setHttpProxySystemProperty()
253 setHttpProxySystemProperty(host, port, exclList, pacFileUrl); in setHttpProxySystemProperty()
258 Uri pacFileUrl) { in setHttpProxySystemProperty() argument
282 if (!Uri.EMPTY.equals(pacFileUrl)) { in setHttpProxySystemProperty()
/frameworks/base/services/core/java/com/android/server/net/
DIpConfigStore.java211 String pacFileUrl = null; in readIpAndProxyConfigurations() local
270 pacFileUrl = in.readUTF(); in readIpAndProxyConfigurations()
313 ProxyInfo proxyPacProperties = new ProxyInfo(pacFileUrl); in readIpAndProxyConfigurations()
/frameworks/base/core/java/android/app/
DIApplicationThread.aidl125 in Uri pacFileUrl); in setHttpProxy() argument
DActivityThread.java960 public void setHttpProxy(String host, String port, String exclList, Uri pacFileUrl) { in setHttpProxy() argument
966 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl); in setHttpProxy()
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java3152 String pacFileUrl = ""; in setGlobalProxy() local
3165 pacFileUrl = proxyProperties.getPacFileUrl().toString(); in setGlobalProxy()
3177 Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC, pacFileUrl); in setGlobalProxy()
3195 String pacFileUrl = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC); in loadGlobalProxy() local
3196 if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) { in loadGlobalProxy()
3198 if (!TextUtils.isEmpty(pacFileUrl)) { in loadGlobalProxy()
3199 proxyProperties = new ProxyInfo(pacFileUrl); in loadGlobalProxy()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java2027 Uri pacFileUrl = Uri.EMPTY; in handleMessage() local
2032 pacFileUrl = proxy.getPacFileUrl(); in handleMessage()
2039 r.thread.setHttpProxy(host, port, exclList, pacFileUrl); in handleMessage()