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

/frameworks/base/core/java/android/net/
H A DProxy.java241 Uri pacFileUrl = Uri.EMPTY;
246 pacFileUrl = p.getPacFileUrl();
248 setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
253 Uri pacFileUrl) {
277 if (!Uri.EMPTY.equals(pacFileUrl)) {
252 setHttpProxySystemProperty(String host, String port, String exclList, Uri pacFileUrl) argument
H A DProxyInfo.java105 public ProxyInfo(Uri pacFileUrl) { argument
109 if (pacFileUrl == null) {
112 mPacFileUrl = pacFileUrl;
119 public ProxyInfo(String pacFileUrl) { argument
123 mPacFileUrl = Uri.parse(pacFileUrl);
130 public ProxyInfo(Uri pacFileUrl, int localProxyPort) { argument
134 if (pacFileUrl == null) {
137 mPacFileUrl = pacFileUrl;
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java350 final Uri pacFileUrl = Uri.CREATOR.createFromParcel(data);
351 setHttpProxy(proxy, port, exclList, pacFileUrl);
1144 Uri pacFileUrl) throws RemoteException {
1150 pacFileUrl.writeToParcel(data, 0);
1143 setHttpProxy(String proxy, String port, String exclList, Uri pacFileUrl) argument
H A DIApplicationThread.java109 Uri pacFileUrl) throws RemoteException;
108 setHttpProxy(String proxy, String port, String exclList, Uri pacFileUrl) argument
H A DActivityThread.java906 public void setHttpProxy(String host, String port, String exclList, Uri pacFileUrl) { argument
912 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);

Completed in 204 milliseconds