Searched refs:exclList (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/net/
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...]
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);
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java104 void setHttpProxy(String proxy, String port, String exclList, argument
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 DActivityThread.java788 public void setHttpProxy(String host, String port, String exclList, String pacFileUrl) { argument
789 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java3379 String exclList = "";
3391 exclList = mGlobalProxy.getExclusionList();
3404 exclList);
3421 String exclList = Settings.Global.getString(res,
3429 proxyProperties = new ProxyProperties(host, port, exclList);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1259 String exclList = "";
1264 exclList = proxy.getExclusionList();
1272 r.thread.setHttpProxy(host, port, exclList, pacFileUrl);

Completed in 256 milliseconds