Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DProxyInfo.java108 public ProxyInfo(Uri pacFileUrl) { in ProxyInfo() argument
113 if (pacFileUrl == null) { in ProxyInfo()
116 mPacFileUrl = pacFileUrl; in ProxyInfo()
123 public ProxyInfo(String pacFileUrl) { in ProxyInfo() argument
128 mPacFileUrl = Uri.parse(pacFileUrl); in ProxyInfo()
135 public ProxyInfo(Uri pacFileUrl, int localProxyPort) { in ProxyInfo() argument
140 if (pacFileUrl == null) { in ProxyInfo()
143 mPacFileUrl = pacFileUrl; in ProxyInfo()
DProxy.java249 Uri pacFileUrl = Uri.EMPTY; in setHttpProxySystemProperty() local
254 pacFileUrl = p.getPacFileUrl(); in setHttpProxySystemProperty()
256 setHttpProxySystemProperty(host, port, exclList, pacFileUrl); in setHttpProxySystemProperty()
261 Uri pacFileUrl) { in setHttpProxySystemProperty() argument
285 if (!Uri.EMPTY.equals(pacFileUrl)) { in setHttpProxySystemProperty()
/frameworks/base/services/core/java/com/android/server/connectivity/
DProxyTracker.java156 String pacFileUrl = Settings.Global.getString(res, GLOBAL_HTTP_PROXY_PAC); in loadGlobalProxy() local
157 if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) { in loadGlobalProxy()
159 if (!TextUtils.isEmpty(pacFileUrl)) { in loadGlobalProxy()
160 proxyProperties = new ProxyInfo(pacFileUrl); in loadGlobalProxy()
242 final String pacFileUrl; in setGlobalProxy() local
253 pacFileUrl = Uri.EMPTY.equals(proxyInfo.getPacFileUrl()) in setGlobalProxy()
259 pacFileUrl = ""; in setGlobalProxy()
268 Settings.Global.putString(res, GLOBAL_HTTP_PROXY_PAC, pacFileUrl); in setGlobalProxy()
/frameworks/base/core/java/com/android/internal/net/
DVpnProfile.java167 String pacFileUrl = (values.length > 18) ? values[18] : ""; in decode() local
168 if (pacFileUrl.isEmpty()) { in decode()
172 profile.proxy = new ProxyInfo(pacFileUrl); in decode()
/frameworks/base/services/core/java/com/android/server/net/
DIpConfigStore.java268 String pacFileUrl = null; in readIpConfigurations() local
332 pacFileUrl = in.readUTF(); in readIpConfigurations()
375 ProxyInfo proxyPacProperties = new ProxyInfo(pacFileUrl); in readIpConfigurations()