Home | History | Annotate | Download | only in settings

Lines Matching refs:Proxy

23 import android.net.Proxy;
41 * To start the Proxy Selector activity, create the following intent.
82 setContentView(R.layout.proxy);
119 // Use the default proxy settings provided by the carrier
120 hostname = Proxy.getDefaultHost();
121 port = Proxy.getDefaultPort();
124 hostname = Proxy.getHost(this);
125 port = Proxy.getPort(this);
208 // the user has cleared the input boxes in order to not use a proxy.
211 // FIXME: If the user types in a proxy that matches the default, should
214 if (hostname.equals(Proxy.getDefaultHost())
215 && port == Proxy.getDefaultPort()) {
218 // proxy.
226 sendBroadcast(new Intent(Proxy.PROXY_CHANGE_ACTION));