Searched refs:ProxyProperties (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/net/
H A DProxyProperties.aidl20 parcelable ProxyProperties;
H A DProxyProperties.java33 public class ProxyProperties implements Parcelable { class in inherits:Parcelable
40 public ProxyProperties(String host, int port, String exclList) { method in class:ProxyProperties
46 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) { method in class:ProxyProperties
54 public ProxyProperties(ProxyProperties source) { method in class:ProxyProperties
141 sb.append("[ProxyProperties.mHost == null]");
148 if (!(o instanceof ProxyProperties)) return false;
149 ProxyProperties p = (ProxyProperties)o;
198 public static final Creator<ProxyProperties> CREATO
[all...]
H A DIConnectivityManager.aidl23 import android.net.ProxyProperties;
110 ProxyProperties getGlobalProxy();
112 void setGlobalProxy(in ProxyProperties p);
114 ProxyProperties getProxy();
H A DLinkProperties.java19 import android.net.ProxyProperties;
67 private ProxyProperties mHttpProxy;
102 null : new ProxyProperties(source.getHttpProxy());
201 public void setHttpProxy(ProxyProperties proxy) {
204 public ProxyProperties getHttpProxy() {
595 netProp.setHttpProxy((ProxyProperties)in.readParcelable(null));
H A DConnectivityManager.java1143 public void setGlobalProxy(ProxyProperties p) {
1153 * @return {@link ProxyProperties} for the current global HTTP proxy or {@code null}
1160 public ProxyProperties getGlobalProxy() {
1172 * @return the {@link ProxyProperties} for the current HTTP proxy, or {@code null} if no
1179 public ProxyProperties getProxy() {
H A DProxy.java24 import android.net.ProxyProperties;
68 * <li><em>EXTRA_PROXY_INFO</em> - The ProxyProperties for the proxy. Non-null,
124 ProxyProperties proxyProperties = sConnectivityManager.getProxy();
324 public static final void setHttpProxySystemProperty(ProxyProperties p) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcAsyncChannel.java26 import android.net.ProxyProperties;
287 public void reqSetLinkPropertiesHttpProxy(ProxyProperties proxy) {
295 public void setLinkPropertiesHttpProxySync(ProxyProperties proxy) {
H A DDataConnection.java35 import android.net.ProxyProperties;
259 void setLinkPropertiesHttpProxy(ProxyProperties proxy) {
854 ProxyProperties proxy = (ProxyProperties) msg.obj;
H A DDcTracker.java34 import android.net.ProxyProperties;
1541 ProxyProperties proxy = new ProxyProperties(apn.proxy,
1545 loge("onDataSetupComplete: NumberFormatException making ProxyProperties (" +
/frameworks/base/core/java/android/webkit/
H A DJWebCoreJavaBridge.java19 import android.net.ProxyProperties;
296 public void updateProxy(ProxyProperties proxyProperties) {
H A DWebViewCore.java26 import android.net.ProxyProperties;
795 BrowserFrame.sJavaBridge.updateProxy((ProxyProperties)msg.obj);
H A DWebViewClassic.java54 import android.net.ProxyProperties;
1572 ProxyProperties proxyProperties = (ProxyProperties)intent.getExtra(Proxy.EXTRA_PROXY_INFO);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java25 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();
919 ProxyProperties proxyProperties =
920 new ProxyProperties(proxyHost, proxyPort, exclusionList);
1250 ProxyProperties newHttpProxy = newConfig.linkProperties.getHttpProxy();
1251 ProxyProperties currentHttpProx
[all...]
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java26 import android.net.ProxyProperties;
2506 ProxyProperties props =
2507 (ProxyProperties)intent.getExtra(Proxy.EXTRA_PROXY_INFO);
2525 private native void updateProxyConfig(ProxyProperties props);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java71 import android.net.ProxyProperties;
357 private ProxyProperties mDefaultProxy = null;
362 private ProxyProperties mGlobalProxy = null;
3118 public ProxyProperties getProxy() {
3129 public void setGlobalProxy(ProxyProperties proxyProperties) {
3140 mGlobalProxy = new ProxyProperties(proxyProperties);
3172 ProxyProperties proxyProperties = new ProxyProperties(host, port, exclList);
3179 public ProxyProperties getGlobalProxy() {
3189 private void handleApplyDefaultProxy(ProxyProperties prox
[all...]
/frameworks/base/core/java/android/app/
H A DActivityThread.java49 import android.net.ProxyProperties;
4345 ProxyProperties proxyProperties = service.getProxy();
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java97 import android.net.ProxyProperties;
1123 ProxyProperties proxy = (ProxyProperties)msg.obj;
12029 ProxyProperties proxy = intent.getParcelableExtra("proxy");

Completed in 717 milliseconds