Searched refs:proxyProperties (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/net/
H A DIpConfigStore.java119 ProxyInfo proxyProperties = config.httpProxy;
120 String exclusionList = proxyProperties.getExclusionListAsString();
124 out.writeUTF(proxyProperties.getHost());
126 out.writeInt(proxyProperties.getPort());
/frameworks/base/core/java/android/net/
H A DProxyInfo.java353 ProxyInfo proxyProperties =
355 return proxyProperties;
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java3180 public void setGlobalProxy(ProxyInfo proxyProperties) { argument
3184 if (proxyProperties == mGlobalProxy) return;
3185 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
3186 if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
3192 if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) ||
3193 !Uri.EMPTY.equals(proxyProperties.getPacFileUrl()))) {
3194 if (!proxyProperties.isValid()) {
3196 log("Invalid proxy properties, ignoring: " + proxyProperties
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DConnectivityServiceMock.java605 public void setGlobalProxy(ProxyInfo proxyProperties) { argument
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java5807 ProxyInfo proxyProperties = new ProxyInfo(data[0], proxyPort, exclusionList);
5808 if (!proxyProperties.isValid()) {
5809 Slog.e(LOG_TAG, "Invalid proxy properties, ignoring: " + proxyProperties.toString());

Completed in 610 milliseconds