Searched refs:proxyProperties (Results 1 – 7 of 7) sorted by relevance
195 ProxyInfo proxyProperties; in loadGlobalProxy() local197 proxyProperties = ProxyInfo.buildPacProxy(Uri.parse(pacFileUrl)); in loadGlobalProxy()199 proxyProperties = ProxyInfo.buildDirectProxy(host, port, in loadGlobalProxy()202 if (!proxyProperties.isValid()) { in loadGlobalProxy()203 if (DBG) Log.d(TAG, "Invalid proxy properties, ignoring: " + proxyProperties); in loadGlobalProxy()208 mGlobalProxy = proxyProperties; in loadGlobalProxy()213 () -> 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()
133 ProxyInfo proxyProperties = config.getHttpProxy(); in writeConfig() local135 proxyProperties.getExclusionList()); in writeConfig()139 out.writeUTF(proxyProperties.getHost()); in writeConfig()141 out.writeInt(proxyProperties.getPort()); in writeConfig()
372 ProxyInfo proxyProperties = new ProxyInfo(host, port, exclList, parsedExclList);373 return proxyProperties;
1467 ProxyInfo proxyProperties = config.getHttpProxy(); in showProxyFields() local1468 if (proxyProperties != null) { in showProxyFields()1469 mProxyHostView.setText(proxyProperties.getHost()); in showProxyFields()1470 mProxyPortView.setText(Integer.toString(proxyProperties.getPort())); in showProxyFields()1472 ProxyUtils.exclusionListAsString(proxyProperties.getExclusionList())); in showProxyFields()
1506 ProxyInfo proxyProperties = config.getHttpProxy(); in showProxyFields() local1507 if (proxyProperties != null) { in showProxyFields()1508 mProxyHostView.setText(proxyProperties.getHost()); in showProxyFields()1509 mProxyPortView.setText(Integer.toString(proxyProperties.getPort())); in showProxyFields()1511 ProxyUtils.exclusionListAsString(proxyProperties.getExclusionList())); in showProxyFields()
7048 public void setGlobalProxy(@Nullable final ProxyInfo proxyProperties) {7050 mProxyTracker.setGlobalProxy(proxyProperties);