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.java351 final Uri pacFileUrl = Uri.CREATOR.createFromParcel(data);
352 setHttpProxy(proxy, port, exclList, pacFileUrl);
1146 Uri pacFileUrl) throws RemoteException {
1152 pacFileUrl.writeToParcel(data, 0);
1145 setHttpProxy(String proxy, String port, String exclList, Uri pacFileUrl) argument
H A DIApplicationThread.java110 Uri pacFileUrl) throws RemoteException;
109 setHttpProxy(String proxy, String port, String exclList, Uri pacFileUrl) argument
H A DActivityThread.java912 public void setHttpProxy(String host, String port, String exclList, Uri pacFileUrl) { argument
918 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);

Completed in 799 milliseconds