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

/frameworks/base/core/java/android/net/
H A DProxy.java213 public static int validate(String hostname, String port, String exclList) { argument
215 Matcher listMatch = EXCLLIST_PATTERN.matcher(exclList);
240 String exclList = null;
245 exclList = p.getExclusionListAsString();
248 setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
252 public static final void setHttpProxySystemProperty(String host, String port, String exclList, argument
254 if (exclList != null) exclList = exclList.replace(",", "|");
255 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 DApplicationThreadNative.java350 final String exclList = data.readString();
352 setHttpProxy(proxy, port, exclList, pacFileUrl);
1145 public void setHttpProxy(String proxy, String port, String exclList, argument
1151 data.writeString(exclList);
H A DIApplicationThread.java109 void setHttpProxy(String proxy, String port, String exclList, 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 157 milliseconds