HomeSort by relevance Sort by last modified time
    Searched refs:exclList (Results 1 - 8 of 8) sorted by null

  /frameworks/base/core/java/android/net/
Proxy.java 239 public static void validate(String hostname, String port, String exclList) {
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,
331 if (exclList != null) exclList = exclList.replace(",", "|");
332 if (false) Log.d(TAG, "setHttpProxySystemProperty :"+host+":"+port+" - "+exclList);
    [all...]
ProxyProperties.java 44 public ProxyProperties(String host, int port, String exclList) {
47 setExclusionList(exclList);
65 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) {
68 mExclusionList = exclList;
267 String exclList = in.readString();
270 new ProxyProperties(host, port, exclList, parsedExclList);
  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 120 String exclList = mExclusionListField.getText().toString().trim();
121 String msg = getActivity().getString(validate(hostname, portStr, exclList));
165 String exclList = "";
174 exclList = proxy.getExclusionList();
186 mExclusionListField.setText(exclList);
205 public static int validate(String hostname, String port, String exclList) {
207 String exclListArray[] = exclList.split(",");
244 String exclList = mExclusionListField.getText().toString().trim();
247 int result = validate(hostname, portStr, exclList);
261 ProxyProperties p = new ProxyProperties(hostname, port, exclList);
    [all...]
  /frameworks/base/core/java/android/app/
IApplicationThread.java 104 void setHttpProxy(String proxy, String port, String exclList,
ApplicationThreadNative.java 340 final String exclList = data.readString();
342 setHttpProxy(proxy, port, exclList, pacFileUrl);
    [all...]
ActivityThread.java 788 public void setHttpProxy(String host, String port, String exclList, String pacFileUrl) {
789 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java     [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java     [all...]

Completed in 239 milliseconds