Searched defs:http_server_properties (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/net/http/
H A Dhttp_pipelined_host_pool.cc13 #include "net/http/http_server_properties.h"
36 const base::WeakPtr<HttpServerProperties>& http_server_properties,
40 http_server_properties_(http_server_properties),
33 HttpPipelinedHostPool( Delegate* delegate, HttpPipelinedHost::Factory* factory, const base::WeakPtr<HttpServerProperties>& http_server_properties, bool force_pipelining) argument
H A Dhttp_stream_factory.cc52 const base::WeakPtr<HttpServerProperties>& http_server_properties,
91 if (http_server_properties->HasAlternateProtocol(host_port)) {
93 http_server_properties->GetAlternateProtocol(host_port);
99 http_server_properties->SetAlternateProtocol(host_port, port, protocol);
51 ProcessAlternateProtocol( const base::WeakPtr<HttpServerProperties>& http_server_properties, const std::string& alternate_protocol_str, const HostPortPair& http_host_port_pair) argument
H A Dhttp_stream_factory_impl.cc17 #include "net/http/http_server_properties.h"
48 session_->http_server_properties(),
200 const HttpServerProperties& http_server_properties = local
201 *session_->http_server_properties();
202 if (!http_server_properties.HasAlternateProtocol(origin))
206 http_server_properties.GetAlternateProtocol(origin);
H A Dhttp_network_session.h70 base::WeakPtr<HttpServerProperties> http_server_properties; member in struct:net::HttpNetworkSession::Params
138 base::WeakPtr<HttpServerProperties> http_server_properties() { function in class:net::HttpNetworkSession
H A Dhttp_network_transaction.cc44 #include "net/http/http_server_properties.h"
71 const base::WeakPtr<HttpServerProperties>& http_server_properties,
82 factory->ProcessAlternateProtocol(http_server_properties,
978 session_->http_server_properties(),
69 ProcessAlternateProtocol( HttpStreamFactory* factory, const base::WeakPtr<HttpServerProperties>& http_server_properties, const HttpResponseHeaders& headers, const HostPortPair& http_host_port_pair) argument
H A Dhttp_stream_factory_impl_job.cc30 #include "net/http/http_server_properties.h"
145 base::WeakPtr<HttpServerProperties> http_server_properties = local
146 session_->http_server_properties();
147 if (http_server_properties &&
148 http_server_properties->SupportsSpdy(origin_server)) {
976 session_->http_server_properties()->SetBrokenAlternateProtocol(
1123 base::WeakPtr<HttpServerProperties> http_server_properties = local
1124 session_->http_server_properties();
1125 if (http_server_properties)
1126 http_server_properties
[all...]
H A Dhttp_network_transaction_unittest.cc6996 base::WeakPtr<HttpServerProperties> http_server_properties = local
6997 session->http_server_properties();
6998 http_server_properties->SetAlternateProtocol(
7936 const HttpServerProperties& http_server_properties = local
7937 *session->http_server_properties();
7939 http_server_properties.HasAlternateProtocol(http_host_port_pair));
7954 ASSERT_TRUE(http_server_properties.HasAlternateProtocol(http_host_port_pair));
7956 http_server_properties.GetAlternateProtocol(http_host_port_pair);
7988 base::WeakPtr<HttpServerProperties> http_server_properties = local
7989 session->http_server_properties();
8051 base::WeakPtr<HttpServerProperties> http_server_properties = local
8102 base::WeakPtr<HttpServerProperties> http_server_properties = local
8150 base::WeakPtr<HttpServerProperties> http_server_properties = local
8199 base::WeakPtr<HttpServerProperties> http_server_properties = local
8247 base::WeakPtr<HttpServerProperties> http_server_properties = local
8291 base::WeakPtr<HttpServerProperties> http_server_properties = local
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_session_pool.h52 const base::WeakPtr<HttpServerProperties>& http_server_properties,
128 base::WeakPtr<HttpServerProperties> http_server_properties() { function in class:net::SpdySessionPool
H A Dspdy_test_util_common.h213 HttpServerPropertiesImpl http_server_properties; member in struct:net::SpdySessionDependencies
H A Dspdy_session_pool.cc12 #include "net/http/http_server_properties.h"
33 const base::WeakPtr<HttpServerProperties>& http_server_properties,
45 : http_server_properties_(http_server_properties),
30 SpdySessionPool( HostResolver* resolver, SSLConfigService* ssl_config_service, const base::WeakPtr<HttpServerProperties>& http_server_properties, bool force_single_domain, bool enable_ip_pooling, bool enable_credential_frames, bool enable_compression, bool enable_ping_based_connection_checking, NextProto default_protocol, size_t stream_initial_recv_window_size, size_t initial_max_concurrent_streams, size_t max_concurrent_streams_limit, SpdySessionPool::TimeFunc time_func, const std::string& trusted_spdy_proxy) argument
H A Dspdy_session.cc33 #include "net/http/http_server_properties.h"
318 const base::WeakPtr<HttpServerProperties>& http_server_properties,
335 http_server_properties_(http_server_properties),
316 SpdySession( const SpdySessionKey& spdy_session_key, const base::WeakPtr<HttpServerProperties>& http_server_properties, bool verify_domain_authentication, bool enable_sending_initial_data, bool enable_credential_frames, bool enable_compression, bool enable_ping_based_connection_checking, NextProto default_protocol, size_t stream_initial_recv_window_size, size_t initial_max_concurrent_streams, size_t max_concurrent_streams_limit, TimeFunc time_func, const HostPortPair& trusted_spdy_proxy, NetLog* net_log) argument
/external/chromium_org/net/tools/fetch/
H A Dfetch_client.cc162 net::HttpServerPropertiesImpl http_server_properties; local
170 session_params.http_server_properties = http_server_properties.GetWeakPtr();
/external/chromium_org/net/url_request/
H A Durl_request_context_storage.cc15 #include "net/http/http_server_properties.h"
87 scoped_ptr<HttpServerProperties> http_server_properties) {
88 http_server_properties_ = http_server_properties.Pass();
86 set_http_server_properties( scoped_ptr<HttpServerProperties> http_server_properties) argument
H A Durl_request_context.h23 #include "net/http/http_server_properties.h"
140 const base::WeakPtr<HttpServerProperties>& http_server_properties) {
141 http_server_properties_ = http_server_properties;
143 base::WeakPtr<HttpServerProperties> http_server_properties() const { function in class:net::URLRequestContext
139 set_http_server_properties( const base::WeakPtr<HttpServerProperties>& http_server_properties) argument
/external/chromium_org/chrome/browser/
H A Dio_thread.h122 scoped_ptr<net::HttpServerProperties> http_server_properties; member in struct:IOThread::Globals
/external/chromium_org/chrome/browser/ui/webui/net_internals/
H A Dnet_internals_ui_browsertest.cc91 base::WeakPtr<net::HttpServerProperties> http_server_properties = local
92 http_network_session->http_server_properties();
94 http_server_properties->SetPipelineCapability(origin, capability);
H A Dnet_internals_ui.cc72 #include "net/http/http_server_properties.h"
1455 const net::HttpServerProperties& http_server_properties = local
1456 *GetMainContext()->http_server_properties();
1459 http_server_properties.alternate_protocol_map();
1636 const net::HttpServerProperties& http_server_properties = local
1637 *GetMainContext()->http_server_properties();
1641 http_server_properties.GetPipelineCapabilityMap();
/external/chromium_org/content/browser/loader/
H A Dresource_scheduler.cc17 #include "net/http/http_server_properties.h"
316 const net::HttpServerProperties& http_server_properties = local
317 *(*it)->url_request()->context()->http_server_properties();
318 if (!http_server_properties.SupportsSpdy(
347 const net::HttpServerProperties& http_server_properties = local
348 *url_request.context()->http_server_properties();
353 bool origin_supports_spdy = http_server_properties.SupportsSpdy(
/external/chromium_org/net/quic/
H A Dquic_network_transaction_unittest.cc232 params_.http_server_properties = http_server_properties.GetWeakPtr();
292 session_->http_server_properties()->SetAlternateProtocol(
297 ASSERT_TRUE(session_->http_server_properties()->HasAlternateProtocol(
300 session_->http_server_properties()->GetAlternateProtocol(
324 HttpServerPropertiesImpl http_server_properties; member in class:net::test::QuicNetworkTransactionTest
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_io_data.cc665 ProfileIOData::http_server_properties() const { function in class:ProfileIOData
670 scoped_ptr<net::HttpServerProperties> http_server_properties) const {
671 http_server_properties_ = http_server_properties.Pass();
950 params->http_server_properties = context->http_server_properties();

Completed in 365 milliseconds