Home | History | Annotate | Download | only in net

Lines Matching defs:exclList

249     public static void validate(String hostname, String port, String exclList) {
251 Matcher listMatch = EXCLLIST_PATTERN.matcher(exclList);
327 String exclList = null;
331 exclList = p.getExclusionList();
333 setHttpProxySystemProperty(host, port, exclList);
337 public static final void setHttpProxySystemProperty(String host, String port, String exclList) {
338 if (exclList != null) exclList = exclList.replace(",", "|");
339 if (false) Log.d(TAG, "setHttpProxySystemProperty :"+host+":"+port+" - "+exclList);
354 if (exclList != null) {
355 System.setProperty("http.nonProxyHosts", exclList);
356 System.setProperty("https.nonProxyHosts", exclList);