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

  /external/chromium/net/flip/
flip_io_buffer.h 13 class FlipStream;
17 // to track the FlipStream which they are associated with so that incremental
27 FlipIOBuffer(IOBuffer* buffer, int size, int priority, FlipStream* stream);
36 const scoped_refptr<FlipStream>& stream() const { return stream_; }
49 scoped_refptr<FlipStream> stream_;
flip_stream.cc 14 FlipStream::FlipStream(FlipSession* session, flip::FlipStreamId stream_id,
36 FlipStream::~FlipStream() {
37 DLOG(INFO) << "Deleting FlipStream for stream " << stream_id_;
48 uint64 FlipStream::GetUploadProgress() const {
55 const HttpResponseInfo* FlipStream::GetResponseInfo() const {
59 int FlipStream::ReadResponseHeaders(CompletionCallback* callback) {
60 // Note: The FlipStream may have already received the response headers, so
76 int FlipStream::ReadResponseBody
    [all...]
flip_stream.h 30 // The FlipStream is used by the FlipSession to represent each stream known
37 class FlipStream : public base::RefCounted<FlipStream> {
39 // FlipStream constructor
40 FlipStream(FlipSession* session, flip::FlipStreamId stream_id, bool pushed,
47 // for FlipStream to provide the appropriate interface.
55 // Also note that FlipStream takes ownership of |upload_data|.
126 friend class base::RefCounted<FlipStream>;
141 ~FlipStream();
202 DISALLOW_COPY_AND_ASSIGN(FlipStream);
    [all...]
flip_io_buffer.cc 14 IOBuffer* buffer, int size, int priority, FlipStream* stream)
flip_session.h 31 class FlipStream;
59 scoped_refptr<FlipStream> GetOrCreateStream(const HttpRequestInfo& request,
104 typedef std::map<int, scoped_refptr<FlipStream> > ActiveStreamMap;
105 typedef std::list<scoped_refptr<FlipStream> > ActiveStreamList;
106 typedef std::map<std::string, scoped_refptr<FlipStream> > PendingStreamMap;
151 void ActivateStream(FlipStream* stream);
157 scoped_refptr<FlipStream> GetPushStream(const std::string& url);
flip_network_transaction.h 24 class FlipStream;
98 // Used to pass onto the FlipStream
113 scoped_refptr<FlipStream> stream_;
flip_stream_unittest.cc 110 scoped_refptr<FlipStream> stream(new FlipStream(session, 1, false, NULL));
118 // TODO(willchan): Write a longer test for FlipStream that exercises all
flip_session.cc 296 scoped_refptr<FlipStream> FlipSession::GetOrCreateStream(
303 scoped_refptr<FlipStream> stream;
323 FlipStream* stream = new FlipStream(this, 0, true, log);
332 stream = new FlipStream(this, stream_id, false, log);
340 LOG(INFO) << "FlipStream: Creating stream " << stream_id << " for " << url;
396 scoped_refptr<FlipStream> stream = active_streams_[stream_id];
437 scoped_refptr<FlipStream> stream = active_streams_[stream_id];
580 scoped_refptr<FlipStream> stream = in_flight_write_.stream();
731 FlipStream** list = new FlipStream*[active_streams_.size()]
    [all...]
  /external/chromium/net/http/
http_network_transaction.h 32 class FlipStream;
293 scoped_refptr<FlipStream> spdy_stream_;

Completed in 2977 milliseconds