Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/connectivity/
DProxyTracker.java162 String pacFileUrl = Settings.Global.getString(res, GLOBAL_HTTP_PROXY_PAC); in loadGlobalProxy() local
163 if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) { in loadGlobalProxy()
165 if (!TextUtils.isEmpty(pacFileUrl)) { in loadGlobalProxy()
166 proxyProperties = new ProxyInfo(Uri.parse(pacFileUrl)); in loadGlobalProxy()
179 if (!TextUtils.isEmpty(pacFileUrl)) { in loadGlobalProxy()
254 final String pacFileUrl; in setGlobalProxy() local
265 pacFileUrl = Uri.EMPTY.equals(proxyInfo.getPacFileUrl()) in setGlobalProxy()
271 pacFileUrl = ""; in setGlobalProxy()
280 Settings.Global.putString(res, GLOBAL_HTTP_PROXY_PAC, pacFileUrl); in setGlobalProxy()
/frameworks/base/core/java/android/net/
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()
DProxyInfo.java118 public ProxyInfo(@NonNull Uri pacFileUrl) { in ProxyInfo() argument
123 if (pacFileUrl == null) { in ProxyInfo()
126 mPacFileUrl = pacFileUrl; in ProxyInfo()
133 public ProxyInfo(@NonNull Uri pacFileUrl, int localProxyPort) { in ProxyInfo() argument
138 if (pacFileUrl == null) { in ProxyInfo()
141 mPacFileUrl = pacFileUrl; in ProxyInfo()
/frameworks/base/services/core/java/com/android/server/net/
DIpConfigStore.java269 String pacFileUrl = null; in readIpConfigurations() local
333 pacFileUrl = in.readUTF(); in readIpConfigurations()
376 ProxyInfo proxyPacProperties = new ProxyInfo(Uri.parse(pacFileUrl)); in readIpConfigurations()
/frameworks/base/core/java/com/android/internal/net/
DVpnProfile.java286 String pacFileUrl = (values.length > 18) ? values[18] : ""; in decode() local
290 } else if (!pacFileUrl.isEmpty()) { in decode()
291 profile.proxy = new ProxyInfo(Uri.parse(pacFileUrl)); in decode()