HomeSort by relevance Sort by last modified time
    Searched refs:ProxyInfo (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/webrtc/webrtc/base/
proxyinfo.cc 11 #include "webrtc/base/proxyinfo.h"
20 ProxyInfo::ProxyInfo() : type(PROXY_NONE), autodetect(false) {
22 ProxyInfo::~ProxyInfo() = default;
proxyinfo.h 28 struct ProxyInfo {
37 ProxyInfo();
38 ~ProxyInfo();
proxydetect.h 14 #include "webrtc/base/proxyinfo.h"
26 rtc::ProxyInfo* proxy,
sslsocketfactory.h 14 #include "webrtc/base/proxyinfo.h"
34 void SetProxy(const ProxyInfo& proxy) {
39 const ProxyInfo& proxy() const { return proxy_; }
62 AsyncSocket* CreateProxySocket(const ProxyInfo& proxy, int family, int type);
67 ProxyInfo proxy_;
proxydetect_unittest.cc 59 bool GetProxyInfo(const std::string prefs, ProxyInfo* info) {
70 ProxyInfo proxy_info;
77 ProxyInfo proxy_info;
87 ProxyInfo proxy_info;
103 ProxyInfo proxy_info;
119 ProxyInfo proxy_info;
135 ProxyInfo proxy_info;
150 ProxyInfo proxy_info;
autodetectproxy.h 19 #include "webrtc/base/proxyinfo.h"
35 const ProxyInfo& proxy() const { return proxy_; }
55 rtc::ProxyInfo* proxy);
79 ProxyInfo proxy_;
httprequest.h 16 #include "webrtc/base/proxyinfo.h"
37 void set_proxy(const ProxyInfo& proxy) {
75 ProxyInfo proxy_;
httpclient.h 17 #include "webrtc/base/proxyinfo.h"
72 void set_proxy(const ProxyInfo& proxy) { proxy_ = proxy; }
73 const ProxyInfo& proxy() const { return proxy_; }
169 ProxyInfo proxy_;
proxydetect.cc 286 bool ParseProxy(const std::string& saddress, ProxyInfo* proxy) {
544 bool GetFirefoxProxySettings(const char* url, ProxyInfo* proxy) {
654 bool GetWinHttpProxySettings(const char* url, ProxyInfo* proxy) {
704 ProxyInfo* proxy) {
792 bool GetJsProxySettings(const char* url, ProxyInfo* proxy) {
819 bool GetWmProxySettings(const char* url, ProxyInfo* proxy) {
866 bool GetIePerConnectionProxySettings(const char* url, ProxyInfo* proxy) {
911 bool GetIeLanProxySettings(const char* url, ProxyInfo* proxy) {
937 bool GetIeProxySettings(const char* agent, const char* url, ProxyInfo* proxy) {
953 bool p_getProxyInfoForTypeFromDictWithKeys(ProxyInfo* proxy
    [all...]
  /frameworks/base/core/java/android/net/
ProxyInfo.aidl 20 parcelable ProxyInfo;
ProxyInfo.java 39 public class ProxyInfo implements Parcelable {
61 * Constructs a {@link ProxyInfo} object that points at a Direct proxy
64 public static ProxyInfo buildDirectProxy(String host, int port) {
65 return new ProxyInfo(host, port, null);
69 * Constructs a {@link ProxyInfo} object that points at a Direct proxy
77 public static ProxyInfo buildDirectProxy(String host, int port, List<String> exclList) {
79 return new ProxyInfo(host, port, TextUtils.join(",", array), array);
83 * Construct a {@link ProxyInfo} that will download and run the PAC script
86 public static ProxyInfo buildPacProxy(Uri pacUri) {
87 return new ProxyInfo(pacUri)
    [all...]
IpConfiguration.java 64 public ProxyInfo httpProxy;
69 ProxyInfo httpProxy) {
75 null : new ProxyInfo(httpProxy);
85 ProxyInfo httpProxy) {
121 public ProxyInfo getHttpProxy() {
125 public void setHttpProxy(ProxyInfo httpProxy) {
IConnectivityManager.aidl 28 import android.net.ProxyInfo;
104 ProxyInfo getGlobalProxy();
106 void setGlobalProxy(in ProxyInfo p);
108 ProxyInfo getProxyForNetwork(in Network nework);
LinkProperties.java 21 import android.net.ProxyInfo;
56 private ProxyInfo mHttpProxy;
157 null : new ProxyInfo(source.getHttpProxy());
520 * Sets the recommended {@link ProxyInfo} to use on this link, or {@code null} for none.
524 * @param proxy A {@link ProxyInfo} defining the HTTP Proxy to use on this link.
527 public void setHttpProxy(ProxyInfo proxy) {
532 * Gets the recommended {@link ProxyInfo} (or {@code null}) set on this link.
534 * @return The {@link ProxyInfo} set on this link
536 public ProxyInfo getHttpProxy() {
    [all...]
  /packages/apps/Settings/src/com/android/settings/vpn2/
ConnectivityManagerWrapper.java 24 import android.net.ProxyInfo;
51 ProxyInfo getGlobalProxy();
ConnectivityManagerWrapperImpl.java 24 import android.net.ProxyInfo;
45 public ProxyInfo getGlobalProxy() {
  /external/webrtc/webrtc/p2p/base/
packetsocketfactory.h 14 #include "webrtc/base/proxyinfo.h"
46 const ProxyInfo& proxy_info,
basicpacketsocketfactory.h 38 const ProxyInfo& proxy_info,
portallocator.h 20 #include "webrtc/base/proxyinfo.h"
200 const rtc::ProxyInfo& proxy() const { return proxy_; }
201 void set_proxy(const std::string& agent, const rtc::ProxyInfo& proxy) {
247 rtc::ProxyInfo proxy_;
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/wifi/
WifiConfigurationProvider.java 20 import android.net.ProxyInfo;
110 ProxyInfo proxy = new ProxyInfo(proxyHost, proxyPort, proxyBypassHosts);
113 ProxyInfo proxy = new ProxyInfo(pacUrl);
  /frameworks/base/services/core/java/com/android/server/net/
IpConfigStore.java 24 import android.net.ProxyInfo;
119 ProxyInfo proxyProperties = config.httpProxy;
134 ProxyInfo proxyPacProperties = config.httpProxy;
307 ProxyInfo proxyInfo =
308 new ProxyInfo(proxyHost, proxyPort, exclusionList);
310 config.httpProxy = proxyInfo;
313 ProxyInfo proxyPacProperties = new ProxyInfo(pacFileUrl);
  /frameworks/base/services/core/java/com/android/server/connectivity/
PacManager.java 28 import android.net.ProxyInfo;
178 public synchronized boolean setCurrentProxyScriptUrl(ProxyInfo proxy) {
394 private void sendPacBroadcast(ProxyInfo proxy) {
403 sendPacBroadcast(new ProxyInfo(mPacUrl, mLastPort));
  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 27 import android.net.ProxyInfo;
154 ProxyInfo proxy = cm.getGlobalProxy();
234 ProxyInfo p = new ProxyInfo(hostname, port, exclList);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
WifiConfigCreator.java 26 import android.net.ProxyInfo;
101 conf.setHttpProxy(ProxyInfo.buildPacProxy(Uri.parse(pacProxyUrl)));
117 ProxyInfo httpProxy = conf.getHttpProxy();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcAsyncChannel.java 21 import android.net.ProxyInfo;
287 public void reqSetLinkPropertiesHttpProxy(ProxyInfo proxy) {
295 public void setLinkPropertiesHttpProxySync(ProxyInfo proxy) {

Completed in 1435 milliseconds

1 2 3