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

/frameworks/base/core/java/android/net/
H A DProxyProperties.aidl20 parcelable ProxyProperties;
H A DProxyProperties.java32 public class ProxyProperties implements Parcelable { class in inherits:Parcelable
44 public ProxyProperties(String host, int port, String exclList) { method in class:ProxyProperties
50 public ProxyProperties(String pacFileUrl) { method in class:ProxyProperties
58 public ProxyProperties(String pacFileUrl, int localProxyPort) { method in class:ProxyProperties
65 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) { method in class:ProxyProperties
74 public ProxyProperties(ProxyProperties source) { method in class:ProxyProperties
180 sb.append("[ProxyProperties.mHost == null]");
187 if (!(o instanceof ProxyProperties)) return false;
188 ProxyProperties
[all...]
H A DIConnectivityManager.aidl24 import android.net.ProxyProperties;
110 ProxyProperties getGlobalProxy();
112 void setGlobalProxy(in ProxyProperties p);
114 ProxyProperties getProxy();
H A DLinkProperties.java19 import android.net.ProxyProperties;
68 private ProxyProperties mHttpProxy;
104 null : new ProxyProperties(source.getHttpProxy());
274 public void setHttpProxy(ProxyProperties proxy) {
277 public ProxyProperties getHttpProxy() {
699 netProp.setHttpProxy((ProxyProperties)in.readParcelable(null));
H A DConnectivityManager.java1207 public void setGlobalProxy(ProxyProperties p) {
1217 * @return {@link ProxyProperties} for the current global HTTP proxy or {@code null}
1224 public ProxyProperties getGlobalProxy() {
1236 * @return the {@link ProxyProperties} for the current HTTP proxy, or {@code null} if no
1243 public ProxyProperties getProxy() {
H A DProxy.java57 * <li><em>EXTRA_PROXY_INFO</em> - The ProxyProperties for the proxy. Non-null,
114 ProxyProperties proxyProperties = sConnectivityManager.getProxy();
314 public static final void setHttpProxySystemProperty(ProxyProperties p) {
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DProxyService.java21 import android.net.ProxyProperties;
H A DProxyServer.java18 import android.net.ProxyProperties;
/frameworks/base/services/java/com/android/server/connectivity/
H A DPacManager.java28 import android.net.ProxyProperties;
163 public synchronized boolean setCurrentProxyScriptUrl(ProxyProperties proxy) {
274 sendPacBroadcast(new ProxyProperties(mPacUrl, mLastPort));
368 private void sendPacBroadcast(ProxyProperties proxy) {
377 sendPacBroadcast(new ProxyProperties(mPacUrl, mLastPort));
/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;
269 void setLinkPropertiesHttpProxy(ProxyProperties proxy) {
860 ProxyProperties proxy = (ProxyProperties) msg.obj;
H A DDcTracker.java35 import android.net.ProxyProperties;
1632 ProxyProperties proxy = new ProxyProperties(apn.proxy,
1636 loge("onDataSetupComplete: NumberFormatException making ProxyProperties (" +
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java25 import android.net.ProxyProperties;
591 ProxyProperties proxy = config.linkProperties.getHttpProxy();
601 * @return ProxyProperties for the network id
603 ProxyProperties getProxyProperties(int netId) {
606 return new ProxyProperties(linkProperties.getHttpProxy());
865 ProxyProperties proxyProperties = linkProperties.getHttpProxy();
878 ProxyProperties proxyPacProperties = linkProperties.getHttpProxy();
1033 ProxyProperties proxyProperties =
1034 new ProxyProperties(proxyHost, proxyPort, exclusionList);
1039 ProxyProperties proxyPacPropertie
[all...]
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java72 import android.net.ProxyProperties;
404 private ProxyProperties mDefaultProxy = null;
409 private ProxyProperties mGlobalProxy = null;
3139 handleApplyDefaultProxy((ProxyProperties)msg.obj);
3357 public ProxyProperties getProxy() {
3363 ProxyProperties ret = mGlobalProxy;
3369 public void setGlobalProxy(ProxyProperties proxyProperties) {
3388 mGlobalProxy = new ProxyProperties(proxyProperties);
3425 ProxyProperties proxyProperties;
3427 proxyProperties = new ProxyProperties(pacFileUr
[all...]
H A DDevicePolicyManagerService.java59 import android.net.ProxyProperties;
2469 ProxyProperties proxyProperties = new ProxyProperties(data[0], proxyPort, exclusionList);
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java26 import android.net.ProxyProperties;
2777 ProxyProperties props =
2778 (ProxyProperties)intent.getExtra(Proxy.EXTRA_PROXY_INFO);
2796 private native void updateProxyConfig(ProxyProperties props);
/frameworks/base/core/java/android/app/
H A DActivityThread.java49 import android.net.ProxyProperties;
4245 ProxyProperties proxyProperties = service.getProxy();
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java129 import android.net.ProxyProperties;
1256 ProxyProperties proxy = (ProxyProperties)msg.obj;
13442 ProxyProperties proxy = intent.getParcelableExtra("proxy");

Completed in 401 milliseconds