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

/frameworks/base/core/java/android/net/
H A DProxy.java242 public static int validate(String hostname, String port, String exclList) { argument
244 Matcher listMatch = EXCLLIST_PATTERN.matcher(exclList);
269 String exclList = null;
274 exclList = p.getExclusionListAsString();
277 setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
281 public static final void setHttpProxySystemProperty(String host, String port, String exclList, argument
283 if (exclList != null) exclList = exclList.replace(",", "|");
284 if (false) Log.d(TAG, "setHttpProxySystemProperty :"+host+":"+port+" - "+exclList);
[all...]
H A DProxyInfo.java79 * The proxy will not be used to access any host in exclusion list, exclList.
81 * @param exclList Hosts to exclude using the proxy on connections for. These
84 public static ProxyInfo buildDirectProxy(String host, int port, List<String> exclList) { argument
85 String[] array = exclList.toArray(new String[exclList.size()]);
101 public ProxyInfo(String host, int port, String exclList) { argument
104 setExclusionList(exclList);
147 private ProxyInfo(String host, int port, String exclList, String[] parsedExclList) { argument
150 mExclusionList = exclList;
358 String exclList
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java337 final String exclList = data.readString();
339 setHttpProxy(proxy, port, exclList, pacFileUrl);
1037 public void setHttpProxy(String proxy, String port, String exclList, argument
1043 data.writeString(exclList);
H A DIApplicationThread.java107 void setHttpProxy(String proxy, String port, String exclList, argument
H A DActivityThread.java851 public void setHttpProxy(String host, String port, String exclList, Uri pacFileUrl) { argument
857 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);

Completed in 1019 milliseconds