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

/frameworks/base/core/java/android/net/
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...]
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);
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java101 void setHttpProxy(String proxy, String port, String exclList) throws RemoteException; argument
H A DApplicationThreadNative.java329 final String exclList = data.readString();
330 setHttpProxy(proxy, port, exclList);
905 public void setHttpProxy(String proxy, String port, String exclList) throws RemoteException { argument
910 data.writeString(exclList);
H A DActivityThread.java725 public void setHttpProxy(String host, String port, String exclList) { argument
726 Proxy.setHttpProxySystemProperty(host, port, exclList);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java2700 String exclList = "";
2705 exclList = mGlobalProxy.getExclusionList();
2713 exclList);
2726 String exclList = Settings.Secure.getString(res,
2729 ProxyProperties proxyProperties = new ProxyProperties(host, port, exclList);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1039 String exclList = "";
1043 exclList = proxy.getExclusionList();
1050 r.thread.setHttpProxy(host, port, exclList);

Completed in 229 milliseconds