Searched refs:pacFileUrl (Results 1 – 5 of 5) sorted by relevance
162 String pacFileUrl = Settings.Global.getString(res, GLOBAL_HTTP_PROXY_PAC); in loadGlobalProxy() local163 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() local265 pacFileUrl = Uri.EMPTY.equals(proxyInfo.getPacFileUrl()) in setGlobalProxy()271 pacFileUrl = ""; in setGlobalProxy()280 Settings.Global.putString(res, GLOBAL_HTTP_PROXY_PAC, pacFileUrl); in setGlobalProxy()
249 Uri pacFileUrl = Uri.EMPTY; in setHttpProxySystemProperty() local254 pacFileUrl = p.getPacFileUrl(); in setHttpProxySystemProperty()256 setHttpProxySystemProperty(host, port, exclList, pacFileUrl); in setHttpProxySystemProperty()261 Uri pacFileUrl) { in setHttpProxySystemProperty() argument285 if (!Uri.EMPTY.equals(pacFileUrl)) { in setHttpProxySystemProperty()
118 public ProxyInfo(@NonNull Uri pacFileUrl) { in ProxyInfo() argument123 if (pacFileUrl == null) { in ProxyInfo()126 mPacFileUrl = pacFileUrl; in ProxyInfo()133 public ProxyInfo(@NonNull Uri pacFileUrl, int localProxyPort) { in ProxyInfo() argument138 if (pacFileUrl == null) { in ProxyInfo()141 mPacFileUrl = pacFileUrl; in ProxyInfo()
269 String pacFileUrl = null; in readIpConfigurations() local333 pacFileUrl = in.readUTF(); in readIpConfigurations()376 ProxyInfo proxyPacProperties = new ProxyInfo(Uri.parse(pacFileUrl)); in readIpConfigurations()
286 String pacFileUrl = (values.length > 18) ? values[18] : ""; in decode() local290 } else if (!pacFileUrl.isEmpty()) { in decode()291 profile.proxy = new ProxyInfo(Uri.parse(pacFileUrl)); in decode()