HomeSort by relevance Sort by last modified time
    Searched refs:HttpStream (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/net/http/
http_stream.h 5 // HttpStream provides an abstraction for a basic http streams, http pipelining
6 // implementations, and SPDY. The HttpStream subtype is expected to manage the
7 // underlying transport appropriately. For example, a non-pipelined HttpStream
24 class NET_EXPORT_PRIVATE HttpStream : public HttpStreamBase {
26 HttpStream() {}
27 virtual ~HttpStream() {}
37 virtual HttpStream* RenewStreamForAuth() = 0;
40 DISALLOW_COPY_AND_ASSIGN(HttpStream);
http_response_body_drainer.h 18 class HttpStream;
30 explicit HttpResponseBodyDrainer(HttpStream* stream);
59 const scoped_ptr<HttpStream> stream_;
http_pipelined_connection_impl_unittest.cc 44 void TestLoadTimingReused(const HttpStream& stream) {
57 void TestLoadTimingNotReused(const HttpStream& stream) {
79 SuddenCloseObserver(HttpStream* stream, int close_before_task)
95 HttpStream* stream_;
142 HttpStream* NewTestStream(const std::string& filename) {
143 HttpStream* stream = pipeline_->CreateNewStream();
152 scoped_ptr<HttpStream>& stream, bool async) {
170 void TestSyncRequest(scoped_ptr<HttpStream>& stream,
204 scoped_ptr<HttpStream> stream(pipeline_->CreateNewStream());
212 scoped_ptr<HttpStream> stream(NewTestStream("ok.html"))
    [all...]
proxy_client_socket.h 19 class HttpStream;
34 // Transfers ownership of a newly created HttpStream to the caller
36 virtual HttpStream* CreateConnectResponseStream() = 0;
http_basic_stream.h 5 // HttpBasicStream is a simple implementation of HttpStream. It assumes it is
28 class HttpBasicStream : public HttpStream {
39 // HttpStream methods:
60 virtual HttpStream* RenewStreamForAuth() OVERRIDE;
http_pipelined_stream.h 26 // HttpPipelinedStream is the pipelined implementation of HttpStream. It has
33 class HttpPipelinedStream : public HttpStream {
39 // HttpStream methods:
60 virtual HttpStream* RenewStreamForAuth() OVERRIDE;
proxy_connect_redirect_http_stream.h 15 // A dummy HttpStream with no body used when a redirect is returned
17 class ProxyConnectRedirectHttpStream : public HttpStream {
63 virtual HttpStream* RenewStreamForAuth() OVERRIDE;
http_stream_factory_impl_job.h 31 class HttpStream;
48 // Start initiates the process of creating a new HttpStream. |request| will be
139 HttpStream* stream);
296 scoped_ptr<HttpStream> stream_;
http_proxy_client_socket.h 31 class HttpStream;
57 virtual HttpStream* CreateConnectResponseStream() OVERRIDE;
proxy_connect_redirect_http_stream.cc 117 HttpStream* ProxyConnectRedirectHttpStream::RenewStreamForAuth() {
  /external/chromium/net/http/
proxy_client_socket.h 13 class HttpStream;
25 // Transfers ownership of a newly created HttpStream to the caller
27 virtual HttpStream* CreateConnectResponseStream() = 0;
http_stream.h 5 // HttpStream is an interface for reading and writing data to an HttpStream that
8 // pipelining implementations. The HttpStream subtype is expected to manage the
9 // underlying transport appropriately. For example, a non-pipelined HttpStream
33 class HttpStream {
35 HttpStream() {}
36 virtual ~HttpStream() {}
47 // when available. Returns OK on success. The HttpStream takes ownership
64 // Provides access to HttpResponseInfo (owned by HttpStream).
96 virtual HttpStream* RenewStreamForAuth() = 0
    [all...]
http_response_body_drainer.h 18 class HttpStream;
30 explicit HttpResponseBodyDrainer(HttpStream* stream);
55 const scoped_ptr<HttpStream> stream_;
http_basic_stream.h 5 // HttpBasicStream is a simple implementation of HttpStream. It assumes it is
31 class HttpBasicStream : public HttpStream {
42 // HttpStream methods:
63 virtual HttpStream* RenewStreamForAuth() OVERRIDE;
http_stream_factory.h 27 class HttpStream;
36 // handles the creation of an HttpStream. While the HttpStream is being
38 // HttpStream creation process. The request is cancelled by deleting it, after
59 HttpStream* stream) = 0;
78 // create the HttpStream, so the caller provides the auth and then resumes
122 HttpStream* stream) = 0;
127 // When a HttpStream creation process is stalled due to necessity
131 // resume the HttpStream creation process.
http_stream_factory_impl_job.h 28 class HttpStream;
44 // Start initiates the process of creating a new HttpStream. |request| will be
129 HttpStream* stream);
253 scoped_ptr<HttpStream> stream_;
http_network_transaction.h 30 class HttpStream;
63 HttpStream* stream);
79 HttpStream* stream);
166 // Gets the response headers from the HttpStream.
241 scoped_ptr<HttpStream> stream_;
http_stream_factory_impl_request.h 59 HttpStream* stream);
78 HttpStream* stream);
http_proxy_client_socket.h 31 class HttpStream;
69 virtual HttpStream* CreateConnectResponseStream();
http_response_body_drainer.cc 16 HttpResponseBodyDrainer::HttpResponseBodyDrainer(HttpStream* stream)
  /external/chromium/net/spdy/
spdy_http_stream.h 32 class SpdyHttpStream : public SpdyStream::Delegate, public HttpStream {
45 // HttpStream methods:
60 virtual HttpStream* RenewStreamForAuth() OVERRIDE;
spdy_proxy_client_socket.h 34 class HttpStream;
66 // method may be called to return an HttpStream in order to read
68 virtual HttpStream* CreateConnectResponseStream();
  /external/chromium_org/net/quic/
quic_http_stream.h 18 // The QuicHttpStream is a QUIC-specific HttpStream subclass. It holds a
23 public HttpStream {
29 // HttpStream implementation.
44 virtual HttpStream* RenewStreamForAuth() OVERRIDE;
102 // outlive this object, according to the HttpStream contract.
  /external/chromium_org/net/spdy/
spdy_http_stream.h 31 public HttpStream {
42 // HttpStream implementation.
59 virtual HttpStream* RenewStreamForAuth() OVERRIDE;
spdy_proxy_client_socket.h 35 class HttpStream;
61 virtual HttpStream* CreateConnectResponseStream() OVERRIDE;

Completed in 315 milliseconds

1 2