Searched refs:exclList (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/net/ |
D | Proxy.java | 220 public static int validate(String hostname, String port, String exclList) { in validate() argument 222 Matcher listMatch = EXCLLIST_PATTERN.matcher(exclList); in validate() 248 String exclList = null; in setHttpProxySystemProperty() local 253 exclList = p.getExclusionListAsString(); in setHttpProxySystemProperty() 256 setHttpProxySystemProperty(host, port, exclList, pacFileUrl); in setHttpProxySystemProperty() 260 public static final void setHttpProxySystemProperty(String host, String port, String exclList, in setHttpProxySystemProperty() argument 262 if (exclList != null) exclList = exclList.replace(",", "|"); in setHttpProxySystemProperty() 263 if (false) Log.d(TAG, "setHttpProxySystemProperty :"+host+":"+port+" - "+exclList); in setHttpProxySystemProperty() 278 if (exclList != null) { in setHttpProxySystemProperty() 279 System.setProperty("http.nonProxyHosts", exclList); in setHttpProxySystemProperty() [all …]
|
D | ProxyInfo.java | 79 public static ProxyInfo buildDirectProxy(String host, int port, List<String> exclList) { in buildDirectProxy() argument 80 String[] array = exclList.toArray(new String[exclList.size()]); in buildDirectProxy() 106 public ProxyInfo(String host, int port, String exclList) { in ProxyInfo() argument 109 mExclusionList = exclList; in ProxyInfo() 152 private ProxyInfo(String host, int port, String exclList, String[] parsedExclList) { in ProxyInfo() argument 155 mExclusionList = exclList; in ProxyInfo() 357 String exclList = in.readString(); 359 ProxyInfo proxyProperties = new ProxyInfo(host, port, exclList, parsedExclList);
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | ProxyTracker.java | 161 String exclList = Settings.Global.getString(res, GLOBAL_HTTP_PROXY_EXCLUSION_LIST); in loadGlobalProxy() local 168 proxyProperties = new ProxyInfo(host, port, exclList); in loadGlobalProxy() 253 final String exclList; in setGlobalProxy() local 264 exclList = mGlobalProxy.getExclusionListAsString(); in setGlobalProxy() 270 exclList = ""; in setGlobalProxy() 279 Settings.Global.putString(res, GLOBAL_HTTP_PROXY_EXCLUSION_LIST, exclList); in setGlobalProxy()
|
/frameworks/base/core/java/com/android/internal/net/ |
D | VpnProfile.java | 285 String exclList = (values.length > 17) ? values[17] : ""; in decode() local 287 if (!host.isEmpty() || !port.isEmpty() || !exclList.isEmpty()) { in decode() 289 0 : Integer.parseInt(port), exclList); in decode()
|