HomeSort by relevance Sort by last modified time
    Searched defs:SpdyStream (Results 1 - 3 of 3) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java 34 public final class SpdyStream {
75 SpdyStream(int id, SpdyConnection connection, boolean outFinished, boolean inFinished,
181 assert (!Thread.holdsLock(SpdyStream.this));
275 assert (!Thread.holdsLock(SpdyStream.this));
306 assert (!Thread.holdsLock(SpdyStream.this));
311 assert (!Thread.holdsLock(SpdyStream.this));
343 /** Buffer with readable data. Guarded by SpdyStream.this. */
367 synchronized (SpdyStream.this) {
412 SpdyStream.this.wait();
414 SpdyStream.this.wait(remaining)
    [all...]
  /external/chromium_org/net/spdy/
spdy_stream.cc 57 class SpdyStream::SynStreamBufferProducer : public SpdyBufferProducer {
59 SynStreamBufferProducer(const base::WeakPtr<SpdyStream>& stream)
77 const base::WeakPtr<SpdyStream> stream_;
80 SpdyStream::SpdyStream(SpdyStreamType type,
115 SpdyStream::~SpdyStream() {
120 void SpdyStream::SetDelegate(Delegate* delegate) {
133 base::Bind(&SpdyStream::PushedStreamReplay, GetWeakPtr()));
137 void SpdyStream::PushedStreamReplay()
    [all...]
spdy_stream.h 51 // Passed to some SpdyStream functions to indicate whether there's
58 // Returned by SpdyStream::OnResponseHeadersUpdated() to indicate
65 // The SpdyStream is used by the SpdySession to represent each stream known
72 class NET_EXPORT_PRIVATE SpdyStream {
144 // Called when SpdyStream is closed. No other delegate functions
160 // SpdyStream constructor
161 SpdyStream(SpdyStreamType type,
169 ~SpdyStream();
350 base::WeakPtr<SpdyStream> GetWeakPtr();
445 // SpdyStream states and transitions are modele
    [all...]

Completed in 80 milliseconds