HomeSort by relevance Sort by last modified time
    Searched full:proxyservice (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium/net/proxy/
proxy_service.cc 54 // During this time window, any resolve requests sent to the ProxyService will
255 // ProxyService::PacRequest ---------------------------------------------------
257 class ProxyService::PacRequest
258 : public base::RefCounted<ProxyService::PacRequest> {
260 PacRequest(ProxyService* service,
347 friend class base::RefCounted<ProxyService::PacRequest>;
365 // Note that we don't hold a reference to the ProxyService. Outstanding
366 // requests are cancelled during ~ProxyService, so this is guaranteed
368 ProxyService* service_;
378 // ProxyService --------------------------------------------------------------
    [all...]
proxy_service.h 38 class NET_EXPORT ProxyService : public base::RefCounted<ProxyService>,
45 // remain alive for the lifetime of this ProxyService.
46 ProxyService(ProxyConfigService* config_service,
101 // is of type ProxyResolverWithoutFetch. ProxyService takes ownership of
106 // Tells this ProxyService to start using a new ProxyConfigService to
109 // ResolveProxy calls. ProxyService takes ownership of
161 // any PAC scripts. The resulting ProxyService will take ownership of it.
165 // lifetime of the ProxyService.
172 static ProxyService* CreateUsingV8ProxyResolver
    [all...]
proxy_service_unittest.cc 25 // ProxyService::SuspendAllPendingRequests().
119 scoped_refptr<ProxyService> service(
120 new ProxyService(new MockProxyConfigService(
154 scoped_refptr<ProxyService> service(
155 new ProxyService(config_service, resolver, NULL));
204 scoped_refptr<ProxyService> service(
205 new ProxyService(config_service, resolver, NULL));
224 // ProxyService will cancel the outstanding request.
232 scoped_refptr<ProxyService> service(
233 new ProxyService(config_service, resolver, NULL))
    [all...]
proxy_config_service.h 57 // ProxyService will call this periodically during periods of activity.
  /external/chromium/chrome/browser/net/
resolve_proxy_msg_helper.h 32 explicit ResolveProxyMsgHelper(net::ProxyService* proxy_service);
45 // Callback for the ProxyService (bound to |callback_|).
53 bool GetProxyService(scoped_refptr<net::ProxyService>* out) const;
68 net::ProxyService::PacRequest* pac_req;
72 scoped_refptr<net::ProxyService> proxy_service_;
82 scoped_refptr<net::ProxyService> proxy_service_override_;
proxy_service_factory.h 17 class ProxyService;
29 static net::ProxyService* CreateProxyService(
proxy_service_factory.cc 44 base_service = net::ProxyService::CreateSystemProxyConfigService(
53 net::ProxyService* ProxyServiceFactory::CreateProxyService(
84 net::ProxyService* proxy_service;
86 proxy_service = net::ProxyService::CreateUsingV8ProxyResolver(
93 proxy_service = net::ProxyService::CreateUsingSystemProxyResolver(
resolve_proxy_msg_helper_unittest.cc 40 service_(new net::ProxyService(
64 scoped_refptr<net::ProxyService> service_;
101 // Finish ProxyService's initialization.
154 // Finish ProxyService's initialization.
160 // ResolveProxyHelper only keeps 1 request outstanding in ProxyService
212 // Finish ProxyService's initialization.
218 // ResolveProxyHelper only keeps 1 request outstanding in ProxyService
resolve_proxy_msg_helper.cc 14 ResolveProxyMsgHelper::ResolveProxyMsgHelper(net::ProxyService* proxy_service)
70 // During shutdown, there may be no ProxyService to use, because the
86 scoped_refptr<net::ProxyService>* out) const {
  /external/chromium/net/http/
http_network_session_peer.h 17 class ProxyService;
44 void SetProxyService(ProxyService* proxy_service);
http_network_session.h 37 class ProxyService;
64 ProxyService* proxy_service;
114 ProxyService* proxy_service() { return proxy_service_; }
165 scoped_refptr<ProxyService> proxy_service_;
http_network_layer.h 28 class ProxyService;
37 // contains a valid ProxyService.
http_stream_factory_impl_unittest.cc 60 explicit SessionDependencies(ProxyService* proxy_service)
71 scoped_refptr<ProxyService> proxy_service;
216 SessionDependencies session_deps(ProxyService::CreateDirect());
239 SessionDependencies session_deps(ProxyService::CreateFixed("http_proxy"));
264 ProxyService::CreateFixed("socks4://socks_proxy:1080"));
288 SessionDependencies session_deps(ProxyService::CreateDirect());