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

  /frameworks/base/core/java/android/net/
ProxyProperties.aidl 20 parcelable ProxyProperties;
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...]
IConnectivityManager.aidl 23 import android.net.ProxyProperties;
107 ProxyProperties getGlobalProxy();
109 void setGlobalProxy(in ProxyProperties p);
111 ProxyProperties getProxy();
LinkProperties.java 19 import android.net.ProxyProperties;
58 private ProxyProperties mHttpProxy;
87 null : new ProxyProperties(source.getHttpProxy());
130 public void setHttpProxy(ProxyProperties proxy) {
133 public ProxyProperties getHttpProxy() {
426 netProp.setHttpProxy((ProxyProperties)in.readParcelable(null));
ConnectivityManager.java 805 * @param proxyProperties The definition for the new global http proxy
808 public void setGlobalProxy(ProxyProperties p) {
816 * @return proxyProperties for the current global proxy
819 public ProxyProperties getGlobalProxy() {
828 * @return proxyProperties for the current proxy (global if set, network specific if not)
831 public ProxyProperties getProxy() {
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) {
  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 31 import android.net.ProxyProperties;
166 ProxyProperties proxy = cm.getGlobalProxy();
257 ProxyProperties p = new ProxyProperties(hostname, port, exclList);
  /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());
WebViewCore.java 26 import android.net.ProxyProperties;
808 BrowserFrame.sJavaBridge.updateProxy((ProxyProperties)msg.obj);
    [all...]
WebViewClassic.java 54 import android.net.ProxyProperties;
    [all...]
  /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...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
DataConnectionAc.java 26 import android.net.ProxyProperties;
332 public void reqSetLinkPropertiesHttpProxy(ProxyProperties proxy) {
340 public void setLinkPropertiesHttpProxySync(ProxyProperties proxy) {
DataConnection.java 29 import android.net.ProxyProperties;
683 ProxyProperties proxy = (ProxyProperties) msg.obj;
    [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...]
  /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/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnectionTracker.java 35 import android.net.ProxyProperties;
    [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 47 import android.net.ProxyProperties;
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java 89 import android.net.ProxyProperties;
    [all...]

Completed in 459 milliseconds