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

/frameworks/base/core/java/android/net/
H A DProxyProperties.java40 public ProxyProperties(String host, int port, String exclList) { argument
43 setExclusionList(exclList);
46 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) { argument
49 mExclusionList = exclList;
207 String exclList = in.readString();
210 new ProxyProperties(host, port, exclList, parsedExclList);
H A DProxy.java249 public static void validate(String hostname, String port, String exclList) { argument
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) { argument
338 if (exclList != null) exclList = exclList.replace(",", "|");
339 if (false) Log.d(TAG, "setHttpProxySystemProperty :"+host+":"+port+" - "+exclList);
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java331 final String exclList = data.readString();
332 setHttpProxy(proxy, port, exclList);
956 public void setHttpProxy(String proxy, String port, String exclList) throws RemoteException { argument
961 data.writeString(exclList);
H A DIApplicationThread.java102 void setHttpProxy(String proxy, String port, String exclList) throws RemoteException; argument
H A DActivityThread.java782 public void setHttpProxy(String host, String port, String exclList) { argument
783 Proxy.setHttpProxySystemProperty(host, port, exclList);

Completed in 1043 milliseconds