Searched refs:pacFileUrl (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/net/
H A DProxy.java318 String pacFileUrl = null;
323 pacFileUrl = p.getPacFileUrl();
325 setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
330 String pacFileUrl) {
354 if (!TextUtils.isEmpty(pacFileUrl)) {
329 setHttpProxySystemProperty(String host, String port, String exclList, String pacFileUrl) argument
H A DProxyProperties.java50 public ProxyProperties(String pacFileUrl) { argument
54 mPacFileUrl = pacFileUrl;
58 public ProxyProperties(String pacFileUrl, int localProxyPort) { argument
62 mPacFileUrl = pacFileUrl;
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java105 String pacFileUrl) throws RemoteException;
104 setHttpProxy(String proxy, String port, String exclList, String pacFileUrl) argument
H A DApplicationThreadNative.java341 final String pacFileUrl = data.readString();
342 setHttpProxy(proxy, port, exclList, pacFileUrl);
1004 String pacFileUrl) throws RemoteException {
1010 data.writeString(pacFileUrl);
1003 setHttpProxy(String proxy, String port, String exclList, String pacFileUrl) argument
H A DActivityThread.java788 public void setHttpProxy(String host, String port, String exclList, String pacFileUrl) { argument
789 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java3380 String pacFileUrl = "";
3393 pacFileUrl = proxyProperties.getPacFileUrl();
3405 Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC, pacFileUrl);
3423 String pacFileUrl = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC);
3424 if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) {
3426 if (!TextUtils.isEmpty(pacFileUrl)) {
3427 proxyProperties = new ProxyProperties(pacFileUrl);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java952 String pacFileUrl = null;
995 pacFileUrl = in.readUTF();
1040 new ProxyProperties(pacFileUrl);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1260 String pacFileUrl = null;
1265 pacFileUrl = proxy.getPacFileUrl();
1272 r.thread.setHttpProxy(host, port, exclList, pacFileUrl);

Completed in 159 milliseconds