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

  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java 26 import android.net.ProxyProperties;
558 ProxyProperties proxy = config.linkProperties.getHttpProxy();
568 * @return ProxyProperties for the network id
570 ProxyProperties getProxyProperties(int netId) {
573 return new ProxyProperties(linkProperties.getHttpProxy());
775 ProxyProperties proxyProperties = linkProperties.getHttpProxy();
776 String exclusionList = proxyProperties.getExclusionList();
780 out.writeUTF(proxyProperties.getHost());
782 out.writeInt(proxyProperties.getPort())
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 27 import android.net.ProxyProperties;
425 ProxyProperties proxyProperties= new ProxyProperties(host, port, exclusionList);
426 mLinkProperties.setHttpProxy(proxyProperties);
661 ProxyProperties proxyProperties = config.linkProperties.getHttpProxy();
662 if (proxyProperties != null) {
663 mProxyHostView.setText(proxyProperties.getHost());
664 mProxyPortView.setText(Integer.toString(proxyProperties.getPort()))
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 53 import android.net.ProxyProperties;
301 private ProxyProperties mDefaultProxy = null;
306 private ProxyProperties mGlobalProxy = null;
    [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 47 import android.net.ProxyProperties;
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java 54 import android.net.ProxyProperties;
    [all...]

Completed in 1200 milliseconds