HomeSort by relevance Sort by last modified time
    Searched refs:proxyProperties (Results 1 - 8 of 8) sorted by null

  /frameworks/base/core/java/android/webkit/
JWebCoreJavaBridge.java 19 import android.net.ProxyProperties;
296 public void updateProxy(ProxyProperties proxyProperties) {
297 if (proxyProperties == null) {
302 String host = proxyProperties.getHost();
303 int port = proxyProperties.getPort();
307 nativeUpdateProxy(host, proxyProperties.getExclusionList());
WebView.java 51 import android.net.ProxyProperties;
    [all...]
  /frameworks/base/core/java/android/net/
Proxy.java 24 import android.net.ProxyProperties;
68 * <li><em>EXTRA_PROXY_INFO</em> - The ProxyProperties for the proxy. Non-null,
124 ProxyProperties proxyProperties = sConnectivityManager.getProxy();
126 if (proxyProperties != null) {
127 if (!proxyProperties.isExcluded(host)) {
128 return proxyProperties.makeProxy();
324 public static final void setHttpProxySystemProperty(ProxyProperties p) {
ProxyProperties.java 33 public class ProxyProperties implements Parcelable {
40 public ProxyProperties(String host, int port, String exclList) {
46 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) {
54 public ProxyProperties(ProxyProperties source) {
141 sb.append("[ProxyProperties.mHost == null]");
148 if (!(o instanceof ProxyProperties)) return false;
149 ProxyProperties p = (ProxyProperties)o;
198 public static final Creator<ProxyProperties> CREATOR
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 27 import android.net.ProxyProperties;
421 ProxyProperties proxyProperties= new ProxyProperties(host, port, exclusionList);
422 mLinkProperties.setHttpProxy(proxyProperties);
669 ProxyProperties proxyProperties = config.linkProperties.getHttpProxy();
670 if (proxyProperties != null) {
671 mProxyHostView.setText(proxyProperties.getHost());
672 mProxyPortView.setText(Integer.toString(proxyProperties.getPort()))
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java 25 import android.net.ProxyProperties;
516 ProxyProperties proxy = config.linkProperties.getHttpProxy();
527 static ProxyProperties getProxyProperties(int netId) {
530 return new ProxyProperties(linkProperties.getHttpProxy());
690 ProxyProperties proxyProperties = linkProperties.getHttpProxy();
691 String exclusionList = proxyProperties.getExclusionList();
695 out.writeUTF(proxyProperties.getHost());
697 out.writeInt(proxyProperties.getPort());
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 53 import android.net.ProxyProperties;
300 private ProxyProperties mDefaultProxy = null;
305 private ProxyProperties mGlobalProxy = null;
    [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 47 import android.net.ProxyProperties;
    [all...]

Completed in 147 milliseconds