Searched defs:pacFileUrl (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/net/
H A DProxy.java270 Uri pacFileUrl = Uri.EMPTY;
275 pacFileUrl = p.getPacFileUrl();
277 setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
282 Uri pacFileUrl) {
306 if (!Uri.EMPTY.equals(pacFileUrl)) {
281 setHttpProxySystemProperty(String host, String port, String exclList, Uri pacFileUrl) argument
H A DProxyInfo.java112 public ProxyInfo(Uri pacFileUrl) { argument
116 if (pacFileUrl == null) {
119 mPacFileUrl = pacFileUrl;
126 public ProxyInfo(String pacFileUrl) { argument
130 mPacFileUrl = Uri.parse(pacFileUrl);
137 public ProxyInfo(Uri pacFileUrl, int localProxyPort) { argument
141 if (pacFileUrl == null) {
144 mPacFileUrl = pacFileUrl;
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java338 final Uri pacFileUrl = Uri.CREATOR.createFromParcel(data);
339 setHttpProxy(proxy, port, exclList, pacFileUrl);
1038 Uri pacFileUrl) throws RemoteException {
1044 pacFileUrl.writeToParcel(data, 0);
1037 setHttpProxy(String proxy, String port, String exclList, Uri pacFileUrl) argument
H A DIApplicationThread.java108 Uri pacFileUrl) throws RemoteException;
107 setHttpProxy(String proxy, String port, String exclList, Uri pacFileUrl) argument
H A DActivityThread.java851 public void setHttpProxy(String host, String port, String exclList, Uri pacFileUrl) { argument
857 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);

Completed in 458 milliseconds