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

1 2 3 4

  /external/chromium_org/net/proxy/
proxy_info.h 16 #include "net/proxy/proxy_server.h"
43 // Sets the proxy list to a single entry, |proxy_server|.
44 void UseProxyServer(const ProxyServer& proxy_server);
68 return proxy_server().is_https();
75 return proxy_server().is_http();
82 return proxy_server().is_quic();
89 return proxy_server().is_socks();
110 const ProxyServer& proxy_server() const { return proxy_list_.Get(); } function in class:net::ProxyInfo
proxy_list_unittest.cc 10 #include "net/proxy/proxy_server.h"
176 ProxyServer proxy_server(
182 proxy_server,
187 retry_info_map[proxy_server.ToURI()].net_error);
197 ProxyServer proxy_server(
203 proxy_server,
207 EXPECT_EQ(OK, retry_info_map[proxy_server.ToURI()].net_error);
217 ProxyServer proxy_server = ProxyServer::FromURI("foopy3:80", local
223 proxy_server,
228 retry_info_map[proxy_server.ToURI()].net_error)
238 ProxyServer proxy_server = ProxyServer::FromURI("foopy2:80", local
    [all...]
proxy_config_service_ios.cc 73 ProxyServer proxy_server = local
78 if (proxy_server.is_valid()) {
81 config->proxy_rules().proxies_for_http.SetSingleProxyServer(proxy_server);
85 proxy_server);
proxy_list.h 36 // Set the proxy list to a single entry, |proxy_server|.
37 void SetSingleProxyServer(const ProxyServer& proxy_server);
40 void AddProxyServer(const ProxyServer& proxy_server);
proxy_config_service_mac.cc 19 #include "net/proxy/proxy_server.h"
73 ProxyServer proxy_server = local
78 if (proxy_server.is_valid()) {
81 config->proxy_rules().proxies_for_ftp.SetSingleProxyServer(proxy_server);
87 ProxyServer proxy_server = local
92 if (proxy_server.is_valid()) {
95 config->proxy_rules().proxies_for_http.SetSingleProxyServer(proxy_server);
101 ProxyServer proxy_server = local
106 if (proxy_server.is_valid()) {
110 SetSingleProxyServer(proxy_server);
116 ProxyServer proxy_server = local
    [all...]
proxy_info.cc 47 void ProxyInfo::UseProxyServer(const ProxyServer& proxy_server) {
49 proxy_list_.SetSingleProxyServer(proxy_server);
proxy_list.cc 12 #include "net/proxy/proxy_server.h"
37 void ProxyList::SetSingleProxyServer(const ProxyServer& proxy_server) {
39 AddProxyServer(proxy_server);
42 void ProxyList::AddProxyServer(const ProxyServer& proxy_server) {
43 if (proxy_server.is_valid())
44 proxies_.push_back(proxy_server);
proxy_resolver_mac.cc 16 #include "net/proxy/proxy_server.h"
164 ProxyServer proxy_server = ProxyServer::FromDictionary( local
169 if (!proxy_server.is_valid())
174 proxy_uri_list += proxy_server.ToURI();
proxy_service_unittest.cc 213 virtual void OnProxyFallback(const ProxyServer& proxy_server,
215 proxy_server_ = proxy_server;
224 const ProxyServer& proxy_server() const { function in class:net::__anon14024::TestProxyFallbackNetworkDelegate
314 EXPECT_EQ(info.proxy_server().host_port_pair().host(), "delegate_proxy.com");
322 EXPECT_EQ(info.proxy_server().host_port_pair().host(), "foopy1");
371 EXPECT_EQ(info.proxy_server().host_port_pair().host(), "foopy1");
415 EXPECT_EQ("foopy:80", info.proxy_server().ToURI());
498 EXPECT_EQ("foopy:8080", info.proxy_server().ToURI());
510 ProxyServer expected_proxy_server = info.proxy_server();
616 EXPECT_EQ("foobar:10", info.proxy_server().ToURI())
    [all...]
  /external/chromium_org/components/data_reduction_proxy/browser/
data_reduction_proxy_delegate.cc 40 const net::HostPortPair& proxy_server,
42 auth_handler_->MaybeAddProxyTunnelRequestHandler(proxy_server, extra_headers);
47 const net::HostPortPair& proxy_server,
data_reduction_proxy_delegate.h 46 const net::HostPortPair& proxy_server,
51 const net::HostPortPair& proxy_server,
data_reduction_proxy_protocol.cc 19 #include "net/proxy/proxy_server.h"
28 net::ProxyServer* proxy_server) {
29 DCHECK(proxy_server);
32 *proxy_server = net::ProxyServer(gurl.SchemeIs("http") ?
62 if (request->proxy_server().IsEmpty())
98 net::ProxyServer proxy_server; local
100 data_reduction_proxy_type_info.proxy_servers.first, &proxy_server);
105 if (proxy_retry_info.find(proxy_server.ToURI()) == proxy_retry_info.end()) {
109 proxy_server,
137 result->proxy_server().is_direct())
    [all...]
data_reduction_proxy_auth_request_handler.cc 22 #include "net/proxy/proxy_server.h"
123 const net::ProxyServer& proxy_server,
126 if (!proxy_server.is_valid())
128 if (proxy_server.is_direct())
130 MaybeAddRequestHeaderImpl(proxy_server.host_port_pair(),
136 const net::HostPortPair& proxy_server,
139 MaybeAddRequestHeaderImpl(proxy_server, true, request_headers);
218 const net::HostPortPair& proxy_server,
221 if (proxy_server.IsEmpty())
224 data_reduction_proxy_params_->IsDataReductionProxy(proxy_server, NULL) &
    [all...]
data_reduction_proxy_auth_request_handler.h 53 // |proxy_server| is a data reduction proxy and not the data reduction proxy's
56 const net::ProxyServer& proxy_server,
61 // |proxy_server| is the data reduction proxy's CONNECT server. Must be called
64 const net::HostPortPair& proxy_server,
126 // |proxy_server| is a data reduction proxy used for ssl tunneling via
127 // HTTP CONNECT, or |expect_ssl| is false and |proxy_server| is a data
129 void MaybeAddRequestHeaderImpl(const net::HostPortPair& proxy_server,
data_reduction_proxy_usage_stats.h 35 const net::ProxyServer& proxy_server,
  /external/chromium_org/net/base/
proxy_delegate.h 56 virtual void OnBeforeTunnelRequest(const HostPortPair& proxy_server,
62 const HostPortPair& proxy_server,
  /external/chromium_org/net/spdy/
spdy_session_key.h 9 #include "net/proxy/proxy_server.h"
18 const ProxyServer& proxy_server,
41 const ProxyServer& proxy_server() const { function in class:net::SpdySessionKey
spdy_session_key.cc 15 const ProxyServer& proxy_server,
17 : host_port_proxy_pair_(host_port_pair, proxy_server),
20 << ", proxy=" << proxy_server.ToURI()
  /external/chromium_org/net/socket/
mock_client_socket_pool_manager.cc 40 const HostPortPair& proxy_server,
42 ssl_socket_pools_for_proxies_[proxy_server] = pool;
81 const HostPortPair& proxy_server) {
83 ssl_socket_pools_for_proxies_.find(proxy_server);
mock_client_socket_pool_manager.h 26 void SetSocketPoolForSSLWithProxy(const HostPortPair& proxy_server,
39 const HostPortPair& proxy_server) OVERRIDE;
  /external/chromium_org/chrome/browser/prefs/
proxy_config_dictionary_unittest.cc 15 std::string proxy_server; member in struct:ProxyConfigHolder
28 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
41 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
55 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
69 ASSERT_TRUE(dict.GetProxyServer(&h.proxy_server));
70 EXPECT_EQ("http://1.2.3.4", h.proxy_server);
84 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
proxy_config_dictionary.cc 103 const std::string& proxy_server,
105 if (!proxy_server.empty()) {
109 proxy_server,
130 const std::string& proxy_server,
138 if (!proxy_server.empty())
139 dict->SetString(kProxyServer, proxy_server);
proxy_config_dictionary.h 47 const std::string& proxy_server,
55 const std::string& proxy_server,
  /external/chromium_org/chrome/browser/extensions/api/proxy/
proxy_api_helpers.cc 149 bool GetProxyServer(const base::DictionaryValue* proxy_server,
158 proxy_server->GetStringASCII(keys::kProxyConfigRuleScheme, &scheme_string);
167 if (!proxy_server->GetString(keys::kProxyConfigRuleHost, &host16)) {
182 if (!proxy_server->GetInteger(keys::kProxyConfigRulePort, &port))
201 // whether a setting was found for the scheme; proxy_server holds the
204 net::ProxyServer proxy_server[keys::SCHEME_MAX + 1]; local
216 &proxy_server[i], error, bad_message)) {
235 *out = proxy_server[keys::SCHEME_ALL].ToURI();
250 proxy_pref.append(proxy_server[i].ToURI());
  /external/chromium_org/net/http/
http_response_info.h 88 // transparent proxy may have been involved. If true, |proxy_server| contains
91 HostPortPair proxy_server; member in class:net::HttpResponseInfo

Completed in 338 milliseconds

1 2 3 4