OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HttpStreamFactoryImpl
(Results
1 - 17
of
17
) sorted by null
/external/chromium_org/net/http/
http_stream_factory_impl_request.cc
16
HttpStreamFactoryImpl
::Request::Request(
18
HttpStreamFactoryImpl
* factory,
39
HttpStreamFactoryImpl
::Request::~Request() {
56
void
HttpStreamFactoryImpl
::Request::SetSpdySessionKey(
66
bool
HttpStreamFactoryImpl
::Request::SetHttpPipeliningKey(
78
void
HttpStreamFactoryImpl
::Request::AttachJob(Job* job) {
84
void
HttpStreamFactoryImpl
::Request::Complete(
102
void
HttpStreamFactoryImpl
::Request::OnStreamReady(
115
void
HttpStreamFactoryImpl
::Request::OnWebSocketHandshakeStreamReady(
129
void
HttpStreamFactoryImpl
::Request::OnStreamFailed
[
all
...]
http_stream_factory_impl_request_unittest.cc
71
HttpStreamFactoryImpl
* factory =
72
static_cast<
HttpStreamFactoryImpl
*>(session->http_stream_factory());
75
HttpStreamFactoryImpl
::Request request(
78
HttpStreamFactoryImpl
::Job* job =
79
new
HttpStreamFactoryImpl
::Job(factory,
http_stream_factory_impl.cc
44
HttpStreamFactoryImpl
::
HttpStreamFactoryImpl
(HttpNetworkSession* session,
52
HttpStreamFactoryImpl
::~
HttpStreamFactoryImpl
() {
68
HttpStreamRequest*
HttpStreamFactoryImpl
::RequestStream(
85
HttpStreamRequest*
HttpStreamFactoryImpl
::RequestWebSocketHandshakeStream(
104
HttpStreamRequest*
HttpStreamFactoryImpl
::RequestStreamInternal(
156
void
HttpStreamFactoryImpl
::PreconnectStreams(
181
base::Value*
HttpStreamFactoryImpl
::PipelineInfoToValue() const {
185
const HostMappingRules*
HttpStreamFactoryImpl
::GetHostMappingRules() const
[
all
...]
http_stream_factory_impl_job.cc
76
HttpStreamFactoryImpl
::Job::Job(
HttpStreamFactoryImpl
* stream_factory,
115
HttpStreamFactoryImpl
::Job::~Job() {
134
void
HttpStreamFactoryImpl
::Job::Start(Request* request) {
140
int
HttpStreamFactoryImpl
::Job::Preconnect(int num_streams) {
156
int
HttpStreamFactoryImpl
::Job::RestartTunnelWithProxyAuth(
164
LoadState
HttpStreamFactoryImpl
::Job::GetLoadState() const {
176
void
HttpStreamFactoryImpl
::Job::MarkAsAlternate(
187
void
HttpStreamFactoryImpl
::Job::WaitFor(Job* job) {
196
void
HttpStreamFactoryImpl
::Job::Resume(Job* job)
[
all
...]
http_stream_factory_impl_request.h
21
class
HttpStreamFactoryImpl
::Request : public HttpStreamRequest {
24
HttpStreamFactoryImpl
* factory,
48
void AttachJob(
HttpStreamFactoryImpl
::Job* job);
128
HttpStreamFactoryImpl
* const factory_;
136
std::set<
HttpStreamFactoryImpl
::Job*> jobs_;
http_stream_factory_impl.h
28
class NET_EXPORT_PRIVATE
HttpStreamFactoryImpl
:
35
HttpStreamFactoryImpl
(HttpNetworkSession* session, bool for_websockets);
36
virtual ~
HttpStreamFactoryImpl
();
131
// All Requests are handed out to clients. By the time
HttpStreamFactoryImpl
142
//
HttpStreamFactoryImpl
. Since they are no longer tied to Requests, they will
144
// ~
HttpStreamFactoryImpl
, it is possible for some jobs to still exist in this
149
// object. They're owned by
HttpStreamFactoryImpl
. Leftover jobs will be
154
DISALLOW_COPY_AND_ASSIGN(
HttpStreamFactoryImpl
);
http_stream_factory_impl_job.h
37
class
HttpStreamFactoryImpl
::Job {
39
Job(
HttpStreamFactoryImpl
* stream_factory,
245
HttpStreamFactoryImpl
* const stream_factory_;
http_network_session.cc
132
http_stream_factory_(new
HttpStreamFactoryImpl
(this, false)),
134
new
HttpStreamFactoryImpl
(this, true)),
http_stream_factory_impl_unittest.cc
124
//
HttpStreamFactoryImpl
subclass that can wait until a preconnect is complete.
125
class MockHttpStreamFactoryImplForPreconnect : public
HttpStreamFactoryImpl
{
129
:
HttpStreamFactoryImpl
(session, for_websockets),
143
//
HttpStreamFactoryImpl
methods.
[
all
...]
/external/chromium/net/http/
http_stream_factory_impl_request.cc
15
HttpStreamFactoryImpl
::Request::Request(const GURL& url,
16
HttpStreamFactoryImpl
* factory,
32
HttpStreamFactoryImpl
::Request::~Request() {
48
void
HttpStreamFactoryImpl
::Request::SetSpdySessionKey(
58
void
HttpStreamFactoryImpl
::Request::AttachJob(Job* job) {
64
void
HttpStreamFactoryImpl
::Request::Complete(
78
void
HttpStreamFactoryImpl
::Request::OnStreamReady(
109
void
HttpStreamFactoryImpl
::Request::OnStreamFailed(
134
void
HttpStreamFactoryImpl
::Request::OnCertificateError(
147
void
HttpStreamFactoryImpl
::Request::OnNeedsProxyAuth
[
all
...]
http_stream_factory_impl.h
22
class
HttpStreamFactoryImpl
: public HttpStreamFactory {
24
explicit
HttpStreamFactoryImpl
(HttpNetworkSession* session);
25
virtual ~
HttpStreamFactoryImpl
();
83
// All Requests are handed out to clients. By the time
HttpStreamFactoryImpl
91
//
HttpStreamFactoryImpl
. Since they are no longer tied to Requests, they will
93
// ~
HttpStreamFactoryImpl
, it is possible for some jobs to still exist in this
98
// object. They're owned by
HttpStreamFactoryImpl
. Leftover jobs will be
102
DISALLOW_COPY_AND_ASSIGN(
HttpStreamFactoryImpl
);
http_stream_factory_impl_request.h
16
class
HttpStreamFactoryImpl
::Request : public HttpStreamRequest {
19
HttpStreamFactoryImpl
* factory,
35
void AttachJob(
HttpStreamFactoryImpl
::Job* job);
97
HttpStreamFactoryImpl
* const factory_;
103
std::set<
HttpStreamFactoryImpl
::Job*> jobs_;
http_stream_factory_impl_job.cc
37
HttpStreamFactoryImpl
::Job::Job(
HttpStreamFactoryImpl
* stream_factory,
69
HttpStreamFactoryImpl
::Job::~Job() {
88
void
HttpStreamFactoryImpl
::Job::Start(Request* request) {
94
int
HttpStreamFactoryImpl
::Job::Preconnect(int num_streams) {
100
int
HttpStreamFactoryImpl
::Job::RestartTunnelWithProxyAuth(
108
LoadState
HttpStreamFactoryImpl
::Job::GetLoadState() const {
121
void
HttpStreamFactoryImpl
::Job::MarkAsAlternate(const GURL& original_url) {
126
void
HttpStreamFactoryImpl
::Job::WaitFor(Job* job) {
135
void
HttpStreamFactoryImpl
::Job::Resume(Job* job)
[
all
...]
http_stream_factory_impl.cc
34
HttpStreamFactoryImpl
::
HttpStreamFactoryImpl
(HttpNetworkSession* session)
37
HttpStreamFactoryImpl
::~
HttpStreamFactoryImpl
() {
52
HttpStreamRequest*
HttpStreamFactoryImpl
::RequestStream(
88
void
HttpStreamFactoryImpl
::PreconnectStreams(
109
void
HttpStreamFactoryImpl
::AddTLSIntolerantServer(const HostPortPair& server) {
113
bool
HttpStreamFactoryImpl
::IsTLSIntolerantServer(
118
bool
HttpStreamFactoryImpl
::GetAlternateProtocolRequestFor(
155
void
HttpStreamFactoryImpl
::OrphanJob(Job* job, const Request* request)
[
all
...]
http_stream_factory_impl_job.h
35
class
HttpStreamFactoryImpl
::Job {
37
Job(
HttpStreamFactoryImpl
* stream_factory,
212
HttpStreamFactoryImpl
* const stream_factory_;
http_network_session.cc
45
new
HttpStreamFactoryImpl
(this))) {
http_stream_factory_impl_unittest.cc
30
class MockHttpStreamFactoryImpl : public
HttpStreamFactoryImpl
{
33
:
HttpStreamFactoryImpl
(session),
47
//
HttpStreamFactoryImpl
methods.
Completed in 56 milliseconds