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());
WebViewClassic.java 54 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;
461 ProxyProperties proxyProperties= new ProxyProperties(host, port, exclusionList);
462 mLinkProperties.setHttpProxy(proxyProperties);
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java 25 import android.net.ProxyProperties;
543 ProxyProperties proxy = config.linkProperties.getHttpProxy();
553 * @return ProxyProperties for the network id
555 ProxyProperties getProxyProperties(int netId) {
558 return new ProxyProperties(linkProperties.getHttpProxy());
762 ProxyProperties proxyProperties = linkProperties.getHttpProxy();
763 String exclusionList = proxyProperties.getExclusionList();
767 out.writeUTF(proxyProperties.getHost());
769 out.writeInt(proxyProperties.getPort())
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 71 import android.net.ProxyProperties;
357 private ProxyProperties mDefaultProxy = null;
362 private ProxyProperties mGlobalProxy = null;
    [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 49 import android.net.ProxyProperties;
    [all...]

Completed in 547 milliseconds