Home | History | Annotate | Download | only in server

Lines Matching refs:proxyProperties

71 import android.net.ProxyProperties;
357 private ProxyProperties mDefaultProxy = null;
362 private ProxyProperties mGlobalProxy = null;
3118 public ProxyProperties getProxy() {
3129 public void setGlobalProxy(ProxyProperties proxyProperties) {
3132 if (proxyProperties == mGlobalProxy) return;
3133 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
3134 if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
3139 if (proxyProperties != null && !TextUtils.isEmpty(proxyProperties.getHost())) {
3140 mGlobalProxy = new ProxyProperties(proxyProperties);
3160 proxyProperties = mDefaultProxy;
3162 sendProxyBroadcast(proxyProperties);
3172 ProxyProperties proxyProperties = new ProxyProperties(host, port, exclList);
3174 mGlobalProxy = proxyProperties;
3179 public ProxyProperties getGlobalProxy() {
3189 private void handleApplyDefaultProxy(ProxyProperties proxy) {
3219 ProxyProperties p = new ProxyProperties(data[0], proxyPort, "");
3224 private void sendProxyBroadcast(ProxyProperties proxy) {
3225 if (proxy == null) proxy = new ProxyProperties("", 0, "");