HomeSort by relevance Sort by last modified time
    Searched refs:QuicHttpStream (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/net/quic/
quic_http_stream.cc 28 QuicHttpStream::QuicHttpStream(const base::WeakPtr<QuicClientSession>& session)
48 QuicHttpStream::~QuicHttpStream() {
54 int QuicHttpStream::InitializeStream(const HttpRequestInfo* request_info,
79 session_, &stream_, base::Bind(&QuicHttpStream::OnStreamReady,
92 void QuicHttpStream::OnStreamReady(int rv) {
103 int QuicHttpStream::SendRequest(const HttpRequestHeaders& request_headers,
147 UploadProgress QuicHttpStream::GetUploadProgress() const {
155 int QuicHttpStream::ReadResponseHeaders(const CompletionCallback& callback)
    [all...]
quic_http_stream.h 22 // The QuicHttpStream is a QUIC-specific HttpStream subclass. It holds a
25 class NET_EXPORT_PRIVATE QuicHttpStream :
30 explicit QuicHttpStream(const base::WeakPtr<QuicClientSession>& session);
32 virtual ~QuicHttpStream();
166 base::WeakPtrFactory<QuicHttpStream> weak_factory_;
168 DISALLOW_COPY_AND_ASSIGN(QuicHttpStream);
quic_stream_factory_test.cc 68 static scoped_ptr<QuicHttpStream> CreateIfSessionExists(
127 scoped_ptr<QuicHttpStream> CreateIfSessionExists(
166 scoped_ptr<QuicHttpStream> stream = request.ReleaseStream();
243 scoped_ptr<QuicHttpStream> stream = request.ReleaseStream();
290 scoped_ptr<QuicHttpStream> stream = request.ReleaseStream();
325 scoped_ptr<QuicHttpStream> stream = request.ReleaseStream();
352 scoped_ptr<QuicHttpStream> stream = request.ReleaseStream();
402 scoped_ptr<QuicHttpStream> stream = request.ReleaseStream();
414 scoped_ptr<QuicHttpStream> stream2 = request2.ReleaseStream();
455 scoped_ptr<QuicHttpStream> stream = request.ReleaseStream()
    [all...]
quic_stream_factory.h 48 // Encapsulates a pending request for a QuicHttpStream.
66 scoped_ptr<QuicHttpStream> ReleaseStream();
68 void set_stream(scoped_ptr<QuicHttpStream> stream);
80 scoped_ptr<QuicHttpStream> stream_;
111 // Creates a new QuicHttpStream to |host_port_pair| which will be
210 // Returns a newly created QuicHttpStream owned by the caller, if a
212 scoped_ptr<QuicHttpStream> CreateIfSessionExists(const QuicServerId& key,
quic_stream_factory.cc 465 void QuicStreamRequest::set_stream(scoped_ptr<QuicHttpStream> stream) {
475 scoped_ptr<QuicHttpStream> QuicStreamRequest::ReleaseStream() {
660 // Returns a newly created QuicHttpStream owned by the caller, if a
662 scoped_ptr<QuicHttpStream> QuicStreamFactory::CreateIfSessionExists(
667 return scoped_ptr<QuicHttpStream>();
672 return scoped_ptr<QuicHttpStream>(
673 new QuicHttpStream(session->GetWeakPtr()));
    [all...]
quic_http_stream_test.cc 92 // Subclass of QuicHttpStream that closes itself when the first piece of data
94 class AutoClosingStream : public QuicHttpStream {
97 : QuicHttpStream(session) {
125 QuicHttpStream* stream) {
246 new QuicHttpStream(session_->GetWeakPtr()));
316 scoped_ptr<QuicHttpStream> stream_;
699 // In the course of processing this packet, the QuicHttpStream close itself.
739 // In the course of processing this packet, the QuicHttpStream close itself.
  /external/chromium_org/net/http/
http_stream_factory_impl_job.h 32 class QuicHttpStream;

Completed in 121 milliseconds