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

/frameworks/base/core/java/android/net/
H A DProxy.java218 public static int validate(String hostname, String port, String exclList) { argument
220 Matcher listMatch = EXCLLIST_PATTERN.matcher(exclList);
245 String exclList = null;
250 exclList = p.getExclusionListAsString();
253 setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
257 public static final void setHttpProxySystemProperty(String host, String port, String exclList, argument
259 if (exclList != null) exclList = exclList.replace(",", "|");
260 if (false) Log.d(TAG, "setHttpProxySystemProperty :"+host+":"+port+" - "+exclList);
[all...]
H A DProxyInfo.java72 * The proxy will not be used to access any host in exclusion list, exclList.
74 * @param exclList Hosts to exclude using the proxy on connections for. These
77 public static ProxyInfo buildDirectProxy(String host, int port, List<String> exclList) { argument
78 String[] array = exclList.toArray(new String[exclList.size()]);
94 public ProxyInfo(String host, int port, String exclList) { argument
97 setExclusionList(exclList);
140 private ProxyInfo(String host, int port, String exclList, String[] parsedExclList) { argument
143 mExclusionList = exclList;
351 String exclList
[all...]
/frameworks/base/core/java/android/app/
H A DActivityThread.java948 public void setHttpProxy(String host, String port, String exclList, Uri pacFileUrl) { argument
955 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);

Completed in 32 milliseconds