Searched refs:proxy_service (Results 1 - 25 of 80) sorted by relevance

1234

/external/chromium_org/net/proxy/
H A Dproxy_service_v8.cc11 #include "net/proxy/proxy_service.h"
34 ProxyService* proxy_service = local
38 proxy_service->SetProxyScriptFetchers(proxy_script_fetcher,
41 return proxy_service;
/external/chromium_org/net/http/
H A Dhttp_network_session_peer.cc9 #include "net/proxy/proxy_service.h"
28 void HttpNetworkSessionPeer::SetProxyService(ProxyService* proxy_service) { argument
29 session_->proxy_service_ = proxy_service;
H A Dhttp_network_session_peer.h28 void SetProxyService(ProxyService* proxy_service);
H A Dhttp_network_session.cc19 #include "net/proxy/proxy_service.h"
50 params.proxy_service,
68 proxy_service(NULL),
115 proxy_service_(params.proxy_service),
H A Dhttp_network_transaction_ssl_unittest.cc19 #include "net/proxy/proxy_service.h"
73 session_params_.proxy_service = proxy_service_.get();
/external/chromium_org/chrome/browser/net/
H A Dproxy_service_factory.cc20 #include "net/proxy/proxy_service.h"
126 net::ProxyService* proxy_service = NULL; local
142 proxy_service = net::CreateProxyServiceUsingV8ProxyResolver(
151 proxy_service = net::ProxyService::CreateUsingSystemProxyResolver(
157 proxy_service->set_quick_check_enabled(quick_check_enabled);
159 return proxy_service;
/external/chromium_org/content/browser/
H A Dresolve_proxy_msg_helper.cc25 ResolveProxyMsgHelper::ResolveProxyMsgHelper(net::ProxyService* proxy_service) argument
27 proxy_service_(proxy_service) {
89 proxy_service_ = context_getter_->GetURLRequestContext()->proxy_service();
H A Dresolve_proxy_msg_helper.h15 #include "net/proxy/proxy_service.h"
38 explicit ResolveProxyMsgHelper(net::ProxyService* proxy_service);
H A Dresolve_proxy_msg_helper_unittest.cc13 #include "net/proxy/proxy_service.h"
33 net::ProxyService* proxy_service,
35 : ResolveProxyMsgHelper(proxy_service),
32 TestResolveProxyMsgHelper( net::ProxyService* proxy_service, IPC::Listener* listener) argument
/external/chromium_org/net/url_request/
H A Durl_request_context_storage.cc18 #include "net/proxy/proxy_service.h"
70 void URLRequestContextStorage::set_proxy_service(ProxyService* proxy_service) { argument
71 context_->set_proxy_service(proxy_service);
72 proxy_service_.reset(proxy_service);
H A Durl_request_context.h111 ProxyService* proxy_service() const { return proxy_service_; } function in class:net::URLRequestContext
112 void set_proxy_service(ProxyService* proxy_service) { argument
113 proxy_service_ = proxy_service;
H A Durl_request_context_builder.h29 #include "net/proxy/proxy_service.h"
85 void set_proxy_service(ProxyService* proxy_service) { argument
86 proxy_service_.reset(proxy_service);
H A Durl_request_context_storage.h57 void set_proxy_service(ProxyService* proxy_service);
/external/chromium_org/components/data_reduction_proxy/browser/
H A Ddata_reduction_proxy_delegate.cc25 const net::ProxyService& proxy_service,
22 OnResolveProxy( const GURL& url, int load_flags, const net::ProxyService& proxy_service, net::ProxyInfo* result) argument
H A Ddata_reduction_proxy_protocol.cc20 #include "net/proxy/proxy_service.h"
97 DCHECK(request->context()->proxy_service());
104 request->context()->proxy_service()->proxy_retry_info();
227 net::ProxyService* proxy_service = request->context()->proxy_service(); local
228 DCHECK(proxy_service);
230 proxy_service->MarkProxiesAsBadUntil(proxy_info,
H A Ddata_reduction_proxy_delegate.h35 const net::ProxyService& proxy_service,
/external/chromium_org/net/base/
H A Dproxy_delegate.h37 const ProxyService& proxy_service,
H A Dnetwork_delegate.h68 const ProxyService& proxy_service,
142 const ProxyService& proxy_service,
H A Dnetwork_delegate.cc27 const ProxyService& proxy_service,
31 OnResolveProxy(url, load_flags, proxy_service, result);
187 const ProxyService& proxy_service,
24 NotifyResolveProxy( const GURL& url, int load_flags, const ProxyService& proxy_service, ProxyInfo* result) argument
184 OnResolveProxy( const GURL& url, int load_flags, const ProxyService& proxy_service, ProxyInfo* result) argument
/external/chromium_org/jingle/glue/
H A Dproxy_resolving_client_socket.cc64 session_params.proxy_service = request_context->proxy_service();
141 int status = network_session_->proxy_service()->ResolveProxy(
293 int rv = network_session_->proxy_service()->ReconsiderProxyAfterError(
323 network_session_->proxy_service()->ReportSuccess(proxy_info_, NULL);
329 network_session_->proxy_service()->CancelPacRequest(pac_request_);
H A Dproxy_resolving_client_socket_unittest.cc12 #include "net/proxy/proxy_service.h"
110 context->proxy_service()->proxy_retry_info();
/external/chromium_org/chrome/browser/chromeos/dbus/
H A Dproxy_resolution_service_provider.cc17 #include "net/proxy/proxy_service.h"
127 net::ProxyService* proxy_service = local
128 getter->GetURLRequestContext()->proxy_service();
129 if (!proxy_service) {
137 const int result = proxy_service->ResolveProxy(
/external/chromium_org/components/policy/core/common/cloud/
H A Dsystem_policy_request_context.cc42 context_->set_proxy_service(system_context->proxy_service());
/external/chromium_org/google_apis/gcm/engine/
H A Dconnection_factory_impl.cc77 gcm_network_session_->proxy_service()->CancelPacRequest(pac_request_);
289 int status = gcm_network_session_->proxy_service()->ResolveProxy(
509 int status = gcm_network_session_->proxy_service()->ReconsiderProxyAfterError(
538 if (gcm_network_session_.get() && gcm_network_session_->proxy_service())
539 gcm_network_session_->proxy_service()->ReportSuccess(proxy_info_, NULL);
/external/chromium_org/android_webview/browser/net/
H A Daw_url_request_context_getter.cc35 #include "net/proxy/proxy_service.h"
95 params->proxy_service = context->proxy_service();

Completed in 692 milliseconds

1234