OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProxyInfo
(Results
1 - 25
of
63
) 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
...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/test/
test_no_socket.py
20
proxy_info = httplib2.
ProxyInfo
('blah',
/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/
WifiConfig.java
19
import android.net.
ProxyInfo
;
140
ProxyInfo
proxy = new
ProxyInfo
(proxyHost, proxyPort, proxyBypassHosts);
143
ProxyInfo
proxy = new
ProxyInfo
(pacUrl);
/frameworks/base/services/core/java/com/android/server/net/
IpConfigStore.java
24
import android.net.
ProxyInfo
;
115
ProxyInfo
proxyProperties = config.httpProxy;
130
ProxyInfo
proxyPacProperties = config.httpProxy;
290
ProxyInfo
proxyInfo
=
291
new
ProxyInfo
(proxyHost, proxyPort, exclusionList);
293
config.httpProxy =
proxyInfo
;
296
ProxyInfo
proxyPacProperties = new
ProxyInfo
(pacFileUrl);
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_util.py
175
httplib2.
ProxyInfo
(
183
httplib2.
ProxyInfo
(httplib2.socks.PROXY_TYPE_HTTP, None, 0))
189
httplib2.
ProxyInfo
(httplib2.socks.PROXY_TYPE_HTTP, '1.2.3.4',
196
httplib2.
ProxyInfo
(httplib2.socks.PROXY_TYPE_HTTP,
204
httplib2.
ProxyInfo
(httplib2.socks.PROXY_TYPE_HTTP, '1.2.3.4',
211
httplib2.
ProxyInfo
(httplib2.socks.PROXY_TYPE_HTTP, None, 0))
/frameworks/base/services/core/java/com/android/server/connectivity/
PacManager.java
27
import android.net.
ProxyInfo
;
160
public synchronized boolean setCurrentProxyScriptUrl(
ProxyInfo
proxy) {
360
private void sendPacBroadcast(
ProxyInfo
proxy) {
369
sendPacBroadcast(new
ProxyInfo
(mPacUrl, mLastPort));
/packages/apps/Settings/src/com/android/settings/
ProxySelector.java
27
import android.net.
ProxyInfo
;
148
ProxyInfo
proxy = cm.getGlobalProxy();
228
ProxyInfo
p = new
ProxyInfo
(hostname, port, exclList);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcAsyncChannel.java
26
import android.net.
ProxyInfo
;
287
public void reqSetLinkPropertiesHttpProxy(
ProxyInfo
proxy) {
295
public void setLinkPropertiesHttpProxySync(
ProxyInfo
proxy) {
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/test/functional/
test_proxies.py
76
proxy_info = httplib2.
ProxyInfo
(socks.PROXY_TYPE_HTTP,
Completed in 731 milliseconds
1
2
3