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.java103 void setHttpProxy(String proxy, String port, String exclList) throws RemoteException; argument
H A DApplicationThreadNative.java335 final String exclList = data.readString();
336 setHttpProxy(proxy, port, exclList);
973 public void setHttpProxy(String proxy, String port, String exclList) throws RemoteException { argument
978 data.writeString(exclList);
H A DActivityThread.java792 public void setHttpProxy(String host, String port, String exclList) { argument
793 Proxy.setHttpProxySystemProperty(host, port, exclList);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java3138 String exclList = "";
3143 exclList = mGlobalProxy.getExclusionList();
3153 exclList);
3169 String exclList = Settings.Global.getString(res,
3172 ProxyProperties proxyProperties = new ProxyProperties(host, port, exclList);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1126 String exclList = "";
1130 exclList = proxy.getExclusionList();
1137 r.thread.setHttpProxy(host, port, exclList);

Completed in 179 milliseconds