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

/frameworks/base/core/java/android/net/
H A DProxyProperties.java44 public ProxyProperties(String host, int port, String exclList) { argument
47 setExclusionList(exclList);
65 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) { argument
68 mExclusionList = exclList;
267 String exclList = in.readString();
270 new ProxyProperties(host, port, exclList, parsedExclList);
H A DProxy.java239 public static void validate(String hostname, String port, String exclList) { argument
241 Matcher listMatch = EXCLLIST_PATTERN.matcher(exclList);
317 String exclList = null;
322 exclList = p.getExclusionList();
325 setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
329 public static final void setHttpProxySystemProperty(String host, String port, String exclList, argument
331 if (exclList != null) exclList = exclList.replace(",", "|");
332 if (false) Log.d(TAG, "setHttpProxySystemProperty :"+host+":"+port+" - "+exclList);
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java340 final String exclList = data.readString();
342 setHttpProxy(proxy, port, exclList, pacFileUrl);
1003 public void setHttpProxy(String proxy, String port, String exclList, argument
1009 data.writeString(exclList);
H A DIApplicationThread.java104 void setHttpProxy(String proxy, String port, String exclList, argument
H A DActivityThread.java788 public void setHttpProxy(String host, String port, String exclList, String pacFileUrl) { argument
789 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);

Completed in 83 milliseconds