Searched defs:proxy_server (Results 1 - 25 of 25) sorted by relevance

/external/chromium/chrome/browser/prefs/
H A Dproxy_config_dictionary_unittest.cc15 std::string proxy_server; member in struct:ProxyConfigHolder
27 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
40 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
54 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
68 ASSERT_TRUE(dict.GetProxyServer(&h.proxy_server));
69 EXPECT_EQ("http://1.2.3.4", h.proxy_server);
82 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
H A Dcommand_line_pref_store.cc92 std::string proxy_server = local
97 ProxyConfigDictionary::CreateFixedServers(proxy_server,
H A Dproxy_config_dictionary.cc74 const std::string& proxy_server,
76 if (!proxy_server.empty()) {
78 ProxyPrefs::MODE_FIXED_SERVERS, "", proxy_server, bypass_list);
93 const std::string& proxy_server,
99 if (!proxy_server.empty())
100 dict->SetString(kProxyServer, proxy_server);
73 CreateFixedServers( const std::string& proxy_server, const std::string& bypass_list) argument
90 CreateDictionary( ProxyPrefs::ProxyMode mode, const std::string& pac_url, const std::string& proxy_server, const std::string& bypass_list) argument
/external/chromium/net/proxy/
H A Dproxy_config_unittest.cc14 const ProxyServer& proxy_server) {
16 EXPECT_FALSE(proxy_server.is_valid());
18 EXPECT_EQ(expectation, proxy_server.ToURI());
13 ExpectProxyServerEquals(const char* expectation, const ProxyServer& proxy_server) argument
H A Dproxy_info.h14 #include "net/proxy/proxy_server.h"
37 // Sets the proxy list to a single entry, |proxy_server|.
38 void UseProxyServer(const ProxyServer& proxy_server);
57 return proxy_server().is_https();
64 return proxy_server().is_http();
71 return proxy_server().is_socks();
81 const ProxyServer& proxy_server() const { return proxy_list_.Get(); } function in class:net::ProxyInfo
H A Dproxy_server_unittest.cc6 #include "net/proxy/proxy_server.h"
177 net::ProxyServer proxy_server; local
178 EXPECT_FALSE(proxy_server.is_valid());
H A Dproxy_info.cc29 void ProxyInfo::UseProxyServer(const ProxyServer& proxy_server) { argument
30 proxy_list_.SetSingleProxyServer(proxy_server);
H A Dproxy_list.cc10 #include "net/proxy/proxy_server.h"
35 void ProxyList::SetSingleProxyServer(const ProxyServer& proxy_server) { argument
37 if (proxy_server.is_valid())
38 proxies_.push_back(proxy_server);
H A Dproxy_resolver_mac.cc16 #include "net/proxy/proxy_server.h"
160 ProxyServer proxy_server = ProxyServer::FromDictionary( local
165 if (!proxy_server.is_valid())
170 proxy_uri_list += proxy_server.ToURI();
H A Dproxy_config.cc129 const ProxyServer* proxy_server = local
131 if (proxy_server && proxy_server->is_valid())
132 return proxy_server;
H A Dproxy_config_service_mac.cc17 #include "net/proxy/proxy_server.h"
75 ProxyServer proxy_server = local
80 if (proxy_server.is_valid()) {
83 config->proxy_rules().proxy_for_ftp = proxy_server;
89 ProxyServer proxy_server = local
94 if (proxy_server.is_valid()) {
97 config->proxy_rules().proxy_for_http = proxy_server;
103 ProxyServer proxy_server = local
108 if (proxy_server.is_valid()) {
111 config->proxy_rules().proxy_for_https = proxy_server;
117 ProxyServer proxy_server = local
[all...]
H A Dproxy_config_service_linux.cc36 #include "net/proxy/proxy_server.h"
95 ProxyServer proxy_server = local
97 if (proxy_server.is_valid() && !proxy_server.is_direct()) {
98 *result_server = proxy_server;
131 ProxyServer proxy_server; local
132 if (GetProxyFromEnvVar("all_proxy", &proxy_server)) {
134 config->proxy_rules().single_proxy = proxy_server;
136 bool have_http = GetProxyFromEnvVar("http_proxy", &proxy_server);
138 config->proxy_rules().proxy_for_http = proxy_server;
932 ProxyServer proxy_server = ProxyServer::FromURI(host, local
992 ProxyServer proxy_server; local
[all...]
/external/chromium/chrome/browser/policy/
H A Ddevice_policy_cache_unittest.cc81 const std::string& proxy_server,
89 proxy_settings->set_proxy_server(proxy_server);
78 CreateProxyPolicy(em::PolicyFetchResponse* policy, const std::string& user, const std::string& proxy_mode, const std::string& proxy_server, const std::string& proxy_pac_url, const std::string& proxy_bypass_list) argument
H A Dconfiguration_policy_pref_store.cc700 std::string proxy_server; local
701 proxy_policies_[kPolicyProxyServer]->GetAsString(&proxy_server);
706 ProxyConfigDictionary::CreateFixedServers(proxy_server,
/external/chromium/chrome/browser/extensions/
H A Dextension_proxy_api_helpers.cc122 bool GetProxyServer(const DictionaryValue* proxy_server, argument
130 proxy_server->GetStringASCII(keys::kProxyConfigRuleScheme, &scheme_string);
139 if (!proxy_server->GetString(keys::kProxyConfigRuleHost, &host16)) {
153 if (!proxy_server->GetInteger(keys::kProxyConfigRulePort, &port))
170 // whether a setting was found for the scheme; proxy_server holds the
173 net::ProxyServer proxy_server[keys::SCHEME_MAX + 1]; local
185 &proxy_server[i], error)) {
204 *out = proxy_server[keys::SCHEME_ALL].ToURI();
219 proxy_pref.append(proxy_server[i].ToURI());
/external/chromium/chrome/browser/net/
H A Dpref_proxy_config_service.cc143 std::string proxy_server; local
144 if (!proxy_dict.GetProxyServer(&proxy_server)) {
149 config->proxy_rules().ParseFromString(proxy_server);
/external/chromium/net/http/
H A Dhttp_network_session.h109 const HostPortPair& proxy_server) {
110 return socket_pool_manager_.GetSocketPoolForSSLWithProxy(proxy_server);
108 GetSocketPoolForSSLWithProxy( const HostPortPair& proxy_server) argument
H A Dhttp_proxy_client_socket.cc31 const HostPortPair& proxy_server,
45 GURL("http://" + proxy_server.ToString()),
26 HttpProxyClientSocket( ClientSocketHandle* transport_socket, const GURL& request_url, const std::string& user_agent, const HostPortPair& endpoint, const HostPortPair& proxy_server, HttpAuthCache* http_auth_cache, HttpAuthHandlerFactory* http_auth_handler_factory, bool tunnel, bool using_spdy, bool is_https_proxy) argument
H A Dhttp_proxy_client_socket_pool.cc277 const HostPortPair& proxy_server = tcp_destination.host_port_pair(); local
285 proxy_server,
H A Dhttp_stream_factory_impl_job.cc526 DCHECK(proxy_info_.proxy_server().is_valid());
537 HostPortProxyPair(proxy_info_.proxy_server().host_port_pair(),
540 spdy_session_key = HostPortProxyPair(origin_, proxy_info_.proxy_server());
570 InitSSLConfig(proxy_info_.proxy_server().host_port_pair(),
728 const ProxyServer& proxy_server = proxy_info_.proxy_server(); local
744 HostPortProxyPair pair(origin_, proxy_server);
752 pair = HostPortProxyPair(proxy_server.host_port_pair(),
935 proxy_info_.proxy_server().host_port_pair().ToString());
H A Dhttp_network_transaction_unittest.cc5460 std::string proxy_server; member in struct:net::GroupNameTest
5535 ProxyService::CreateFixed(tests[i].proxy_server));
5589 ProxyService::CreateFixed(tests[i].proxy_server));
5657 ProxyService::CreateFixed(tests[i].proxy_server));
6840 ProxyServer proxy_server(ProxyServer::SCHEME_HTTP,
6842 results->UseProxyServer(proxy_server);
/external/chromium/net/socket/
H A Dclient_socket_pool_manager.cc112 ProxyServer proxy_server = proxy_info.proxy_server(); local
113 proxy_host_port.reset(new HostPortPair(proxy_server.host_port_pair()));
158 if (proxy_server.scheme() == ProxyServer::SCHEME_SOCKS5)
179 proxy_info.proxy_server().scheme(),
509 const HostPortPair& proxy_server) {
511 ssl_socket_pools_for_proxies_.find(proxy_server);
525 GetSocketPoolForSOCKSProxy(proxy_server),
526 GetSocketPoolForHTTPProxy(proxy_server),
531 ssl_socket_pools_for_proxies_.insert(std::make_pair(proxy_server,
508 GetSocketPoolForSSLWithProxy( const HostPortPair& proxy_server) argument
[all...]
H A Dsocks_client_socket_pool.cc21 const scoped_refptr<TransportSocketParams>& proxy_server,
26 : transport_params_(proxy_server),
20 SOCKSSocketParams( const scoped_refptr<TransportSocketParams>& proxy_server, bool socks_v5, const HostPortPair& host_port_pair, RequestPriority priority, const GURL& referrer) argument
/external/chromium/net/spdy/
H A Dspdy_proxy_client_socket.cc29 const HostPortPair& proxy_server,
41 GURL("http://" + proxy_server.ToString()),
24 SpdyProxyClientSocket( SpdyStream* spdy_stream, const std::string& user_agent, const HostPortPair& endpoint, const GURL& url, const HostPortPair& proxy_server, HttpAuthCache* auth_cache, HttpAuthHandlerFactory* auth_handler_factory) argument
/external/chromium/chrome/browser/automation/
H A Dautomation_provider.cc558 std::string proxy_server; local
559 if (dict.GetString(automation::kJSONProxyServer, &proxy_server)) {
560 pc->proxy_rules().ParseFromString(proxy_server);

Completed in 228 milliseconds