Searched refs:proxyProperties (Results 1 – 6 of 6) sorted by relevance
190 ProxyInfo proxyProperties; in loadGlobalProxy() local192 proxyProperties = ProxyInfo.buildPacProxy(Uri.parse(pacFileUrl)); in loadGlobalProxy()194 proxyProperties = ProxyInfo.buildDirectProxy(host, port, in loadGlobalProxy()197 if (!proxyProperties.isValid()) { in loadGlobalProxy()198 if (DBG) Log.d(TAG, "Invalid proxy properties, ignoring: " + proxyProperties); in loadGlobalProxy()203 mGlobalProxy = proxyProperties; in loadGlobalProxy()208 () -> mPacProxyManager.setCurrentProxyScriptUrl(proxyProperties)); in loadGlobalProxy()
93 ProxyInfo proxyProperties = config.httpProxy; in writeConfig() local94 String exclusionList = proxyProperties.getExclusionListAsString(); in writeConfig()98 out.writeUTF(proxyProperties.getHost()); in writeConfig()100 out.writeInt(proxyProperties.getPort()); in writeConfig()
362 ProxyInfo proxyProperties = new ProxyInfo(host, port, exclList, parsedExclList);363 return proxyProperties;
1414 ProxyInfo proxyProperties = config.getHttpProxy(); in showProxyFields() local1415 if (proxyProperties != null) { in showProxyFields()1416 mProxyHostView.setText(proxyProperties.getHost()); in showProxyFields()1417 mProxyPortView.setText(Integer.toString(proxyProperties.getPort())); in showProxyFields()1419 ProxyUtils.exclusionListAsString(proxyProperties.getExclusionList())); in showProxyFields()
1435 ProxyInfo proxyProperties = config.getHttpProxy(); in showProxyFields() local1436 if (proxyProperties != null) { in showProxyFields()1437 mProxyHostView.setText(proxyProperties.getHost()); in showProxyFields()1438 mProxyPortView.setText(Integer.toString(proxyProperties.getPort())); in showProxyFields()1440 ProxyUtils.exclusionListAsString(proxyProperties.getExclusionList())); in showProxyFields()
5198 public void setGlobalProxy(@Nullable final ProxyInfo proxyProperties) { in setGlobalProxy() argument5200 mProxyTracker.setGlobalProxy(proxyProperties); in setGlobalProxy()