OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HttpStreamFactoryImpl
(Results
1 - 9
of
9
) 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() {
55
void
HttpStreamFactoryImpl
::Request::SetSpdySessionKey(
65
void
HttpStreamFactoryImpl
::Request::AttachJob(Job* job) {
71
void
HttpStreamFactoryImpl
::Request::Complete(
89
void
HttpStreamFactoryImpl
::Request::OnStreamReady(
102
void
HttpStreamFactoryImpl
::Request::OnWebSocketHandshakeStreamReady(
116
void
HttpStreamFactoryImpl
::Request::OnStreamFailed(
145
void
HttpStreamFactoryImpl
::Request::OnCertificateError
[
all
...]
http_stream_factory_impl_request_unittest.cc
70
HttpStreamFactoryImpl
* factory =
71
static_cast<
HttpStreamFactoryImpl
*>(session->http_stream_factory());
74
HttpStreamFactoryImpl
::Request request(
77
HttpStreamFactoryImpl
::Job* job =
78
new
HttpStreamFactoryImpl
::Job(factory,
http_stream_factory_impl.cc
38
HttpStreamFactoryImpl
::
HttpStreamFactoryImpl
(HttpNetworkSession* session,
43
HttpStreamFactoryImpl
::~
HttpStreamFactoryImpl
() {
58
HttpStreamRequest*
HttpStreamFactoryImpl
::RequestStream(
75
HttpStreamRequest*
HttpStreamFactoryImpl
::RequestWebSocketHandshakeStream(
94
HttpStreamRequest*
HttpStreamFactoryImpl
::RequestStreamInternal(
146
void
HttpStreamFactoryImpl
::PreconnectStreams(
171
const HostMappingRules*
HttpStreamFactoryImpl
::GetHostMappingRules() const {
175
AlternateProtocolInfo
HttpStreamFactoryImpl
::GetAlternateProtocolRequestFor
[
all
...]
http_stream_factory_impl_job.cc
69
HttpStreamFactoryImpl
::Job::Job(
HttpStreamFactoryImpl
* stream_factory,
108
HttpStreamFactoryImpl
::Job::~Job() {
127
void
HttpStreamFactoryImpl
::Job::Start(Request* request) {
133
int
HttpStreamFactoryImpl
::Job::Preconnect(int num_streams) {
149
int
HttpStreamFactoryImpl
::Job::RestartTunnelWithProxyAuth(
157
LoadState
HttpStreamFactoryImpl
::Job::GetLoadState() const {
169
void
HttpStreamFactoryImpl
::Job::MarkAsAlternate(
180
void
HttpStreamFactoryImpl
::Job::WaitFor(Job* job) {
189
void
HttpStreamFactoryImpl
::Job::Resume(Job* job)
[
all
...]
http_stream_factory_impl.h
26
class NET_EXPORT_PRIVATE
HttpStreamFactoryImpl
: public HttpStreamFactory {
31
HttpStreamFactoryImpl
(HttpNetworkSession* session, bool for_websockets);
32
virtual ~
HttpStreamFactoryImpl
();
114
// All Requests are handed out to clients. By the time
HttpStreamFactoryImpl
122
//
HttpStreamFactoryImpl
. Since they are no longer tied to Requests, they will
124
// ~
HttpStreamFactoryImpl
, it is possible for some jobs to still exist in this
129
// object. They're owned by
HttpStreamFactoryImpl
. Leftover jobs will be
134
DISALLOW_COPY_AND_ASSIGN(
HttpStreamFactoryImpl
);
http_stream_factory_impl_request.h
22
class
HttpStreamFactoryImpl
::Request : public HttpStreamRequest {
25
HttpStreamFactoryImpl
* factory,
44
void AttachJob(
HttpStreamFactoryImpl
::Job* job);
121
HttpStreamFactoryImpl
* const factory_;
129
std::set<
HttpStreamFactoryImpl
::Job*> jobs_;
http_stream_factory_impl_job.h
36
class
HttpStreamFactoryImpl
::Job {
38
Job(
HttpStreamFactoryImpl
* stream_factory,
262
HttpStreamFactoryImpl
* const stream_factory_;
http_network_session.cc
154
http_stream_factory_(new
HttpStreamFactoryImpl
(this, false)),
155
http_stream_factory_for_websocket_(new
HttpStreamFactoryImpl
(this, true)),
http_stream_factory_impl_unittest.cc
107
//
HttpStreamFactoryImpl
subclass that can wait until a preconnect is complete.
108
class MockHttpStreamFactoryImplForPreconnect : public
HttpStreamFactoryImpl
{
112
:
HttpStreamFactoryImpl
(session, for_websockets),
126
//
HttpStreamFactoryImpl
methods.
[
all
...]
Completed in 255 milliseconds