OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ProxyConfig
(Results
1 - 11
of
11
) sorted by null
/external/chromium/net/proxy/
proxy_config.cc
27
ProxyConfig
::ProxyRules::ProxyRules()
32
ProxyConfig
::ProxyRules::~ProxyRules() {
35
void
ProxyConfig
::ProxyRules::Apply(const GURL& url, ProxyInfo* result) {
73
void
ProxyConfig
::ProxyRules::ParseFromString(const std::string& proxy_rules) {
127
const ProxyServer*
ProxyConfig
::ProxyRules::MapUrlSchemeToProxy(
138
bool
ProxyConfig
::ProxyRules::Equals(const ProxyRules& other) const {
149
ProxyServer*
ProxyConfig
::ProxyRules::MapUrlSchemeToProxyNoFallback(
161
ProxyConfig
::
ProxyConfig
() : auto_detect_(false), id_(INVALID_ID) {
164
ProxyConfig
::ProxyConfig(const ProxyConfig& config
[
all
...]
proxy_config.h
22
//
ProxyConfig
describes a user's proxy settings.
33
class NET_EXPORT
ProxyConfig
{
45
// being made when using this
ProxyConfig
.
113
ProxyConfig
();
114
ProxyConfig
(const
ProxyConfig
& config);
115
~
ProxyConfig
();
116
ProxyConfig
& operator=(const
ProxyConfig
& config);
124
bool Equals(const
ProxyConfig
& other) const
[
all
...]
/external/chromium_org/net/proxy/
proxy_config.cc
38
ProxyConfig
::ProxyRules::ProxyRules()
43
ProxyConfig
::ProxyRules::~ProxyRules() {
46
void
ProxyConfig
::ProxyRules::Apply(const GURL& url, ProxyInfo* result) const {
84
void
ProxyConfig
::ProxyRules::ParseFromString(const std::string& proxy_rules) {
142
const ProxyList*
ProxyConfig
::ProxyRules::MapUrlSchemeToProxyList(
153
bool
ProxyConfig
::ProxyRules::Equals(const ProxyRules& other) const {
164
ProxyList*
ProxyConfig
::ProxyRules::MapUrlSchemeToProxyListNoFallback(
176
ProxyConfig
::
ProxyConfig
()
181
ProxyConfig
::ProxyConfig(const ProxyConfig& config
[
all
...]
proxy_config.h
25
//
ProxyConfig
describes a user's proxy settings.
36
class NET_EXPORT
ProxyConfig
{
50
// being made when using this
ProxyConfig
.
151
ProxyConfig
();
152
ProxyConfig
(const
ProxyConfig
& config);
153
~
ProxyConfig
();
154
ProxyConfig
& operator=(const
ProxyConfig
& config);
163
bool Equals(const
ProxyConfig
& other) const
[
all
...]
/external/chromium/chrome/browser/chromeos/
proxy_config_service_impl.h
63
// net::
ProxyConfig
does not suffice. So we create an augmented analog to
64
// net:
ProxyConfig
here to include and handle these UI requirements, e.g.
68
// This is then converted to the common net::
ProxyConfig
before being returned
71
struct
ProxyConfig
{
106
ProxyConfig
() : mode(MODE_DIRECT) {}
108
// Converts |this| to net::
ProxyConfig
.
109
void ToNetProxyConfig(net::
ProxyConfig
* net_config);
158
// |init_config| specifies the
ProxyConfig
to use for initialization.
159
explicit ProxyConfigServiceImpl(const
ProxyConfig
& init_config);
168
net::
ProxyConfig
* config)
[
all
...]
/frameworks/base/core/tests/coretests/src/android/net/http/
AbstractProxyTest.java
94
testConnectViaProxy(
ProxyConfig
.PROXY_SYSTEM_PROPERTY);
98
testConnectViaProxy(
ProxyConfig
.HTTP_PROXY_SYSTEM_PROPERTY);
102
testConnectViaProxy(
ProxyConfig
.REQUEST_PARAMETER);
106
testConnectViaProxy(
ProxyConfig
.CLIENT_PARAMETER);
112
private void testConnectViaProxy(
ProxyConfig
proxyConfig
) throws Exception {
122
proxyConfig
.configure(server, httpProxyClient, request);
133
testConnectViaHttpProxyToHttps(
ProxyConfig
.PROXY_SYSTEM_PROPERTY);
137
testConnectViaHttpProxyToHttps(
ProxyConfig
.HTTPS_PROXY_SYSTEM_PROPERTY);
141
testConnectViaHttpProxyToHttps(
ProxyConfig
.CLIENT_PARAMETER)
[
all
...]
/external/chromium/chrome/browser/importer/
firefox_proxy_settings.h
17
class
ProxyConfig
;
22
enum
ProxyConfig
{
48
ProxyConfig
config_type() const { return config_type_; }
74
// Converts a FirefoxProxySettings object to a net::
ProxyConfig
.
76
bool ToProxyConfig(net::
ProxyConfig
* config);
86
ProxyConfig
config_type_;
/external/chromium_org/chrome/browser/net/
firefox_proxy_settings.h
18
class
ProxyConfig
;
23
enum
ProxyConfig
{
49
ProxyConfig
config_type() const { return config_type_; }
75
// Converts a FirefoxProxySettings object to a net::
ProxyConfig
.
77
bool ToProxyConfig(net::
ProxyConfig
* config);
87
ProxyConfig
config_type_;
/external/chromium_org/net/android/java/src/org/chromium/net/
ProxyChangeListener.java
34
private static class
ProxyConfig
{
35
public
ProxyConfig
(String host, int port) {
90
// Extract a
ProxyConfig
object from the supplied Intent's extra data
97
private
ProxyConfig
extractNewProxy(Intent intent) {
113
return new
ProxyConfig
(host, port);
128
private void proxySettingsChanged(
ProxyConfig
cfg) {
/libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java
568
testConnectViaProxy(
ProxyConfig
.CREATE_ARG);
572
testConnectViaProxy(
ProxyConfig
.PROXY_SYSTEM_PROPERTY);
576
testConnectViaProxy(
ProxyConfig
.HTTP_PROXY_SYSTEM_PROPERTY);
579
private void testConnectViaProxy(
ProxyConfig
proxyConfig
) throws Exception {
585
HttpURLConnection connection =
proxyConfig
.connect(server, url);
620
testConnectViaDirectProxyToHttps(
ProxyConfig
.NO_PROXY);
625
testConnectViaDirectProxyToHttps(
ProxyConfig
.HTTP_PROXY_SYSTEM_PROPERTY);
628
private void testConnectViaDirectProxyToHttps(
ProxyConfig
proxyConfig
) throws Exception
[
all
...]
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
URLConnectionTest.java
605
testConnectViaProxy(
ProxyConfig
.CREATE_ARG);
609
testConnectViaProxy(
ProxyConfig
.PROXY_SYSTEM_PROPERTY);
613
testConnectViaProxy(
ProxyConfig
.HTTP_PROXY_SYSTEM_PROPERTY);
616
private void testConnectViaProxy(
ProxyConfig
proxyConfig
) throws Exception {
622
HttpURLConnection connection =
proxyConfig
.connect(server, client, url);
656
testConnectViaDirectProxyToHttps(
ProxyConfig
.NO_PROXY);
661
testConnectViaDirectProxyToHttps(
ProxyConfig
.HTTP_PROXY_SYSTEM_PROPERTY);
664
private void testConnectViaDirectProxyToHttps(
ProxyConfig
proxyConfig
) throws Exception
[
all
...]
Completed in 2833 milliseconds