HomeSort by relevance Sort by last modified time
    Searched full:goaway (Results 1 - 25 of 43) sorted by null

1 2

  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
Spdy3Test.java 60 // Compose the expected GOAWAY frame without debug data
76 fr.nextFrame(new BaseTestHandler() { // Consume the goAway frame.
77 @Override public void goAway(
98 new Spdy3.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
BaseTestHandler.java 53 @Override public void goAway(int lastGoodStreamId, ErrorCode errorCode, ByteString debugData) {
Http20Draft09Test.java 407 // Compose the expected GOAWAY frame without debug data.
421 @Override public void goAway(
436 // Compose the expected GOAWAY frame without debug data.
451 @Override public void goAway(
499 new Http20Draft09.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
SpdyConnectionTest.java 828 peer.sendFrame().goAway(1, PROTOCOL_ERROR, Util.EMPTY_BYTE_ARRAY);
    [all...]
  /external/chromium_org/content/browser/renderer_host/
websocket_dispatcher_host_unittest.cc 45 virtual void GoAway() OVERRIDE;
69 void GoAway(int routing_id) {
108 void MockWebSocketHost::GoAway() {
110 owner_->GoAway(routing_id());
websocket_host.h 45 virtual void GoAway();
websocket_dispatcher_host.cc 191 // Note that some calls to GoAway could fail. In that case hosts[i] will be
193 hosts[i]->GoAway();
  /external/chromium_org/net/spdy/
spdy_protocol.cc 86 return GOAWAY;
111 return GOAWAY;
144 case GOAWAY:
171 case GOAWAY:
366 // This works because GOAWAY and RST_STREAM share a namespace.
596 LOG(DFATAL) << "Unhandled GOAWAY status " << goaway_status_field;
671 LOG(DFATAL) << "Serializing unhandled GOAWAY status " << status;
704 LOG(DFATAL) << "Serializing unhandled GOAWAY status " << status;
spdy_session_unittest.cc 287 // A session receiving a GOAWAY frame with no active streams should close.
292 scoped_ptr<SpdyFrame> goaway(spdy_util_.ConstructSpdyGoAway(1));
294 CreateMockRead(*goaway, 0),
309 // Read and process the GOAWAY frame.
316 // A session receiving a GOAWAY frame immediately with no active
322 scoped_ptr<SpdyFrame> goaway(spdy_util_.ConstructSpdyGoAway(1));
324 CreateMockRead(*goaway, 0, SYNCHRONOUS),
343 // A session receiving a GOAWAY frame with active streams should close
349 scoped_ptr<SpdyFrame> goaway(spdy_util_.ConstructSpdyGoAway(1));
351 CreateMockRead(*goaway, 2)
    [all...]
spdy_framer.cc 271 // Size, in bytes, of this GOAWAY frame. Calculated as:
278 // 3. SPDY 3+ GOAWAY frames also contain a status (4 bytes)
493 case GOAWAY:
494 return "GOAWAY";
947 case GOAWAY:
951 // be appended to the GOAWAY frame, thus there is only a minimal length
    [all...]
spdy_framer.h 233 // Called when a GOAWAY frame has been parsed.
246 // Called when a goaway frame opaque data is available.
247 // |goaway_data| A buffer containing the opaque GOAWAY data chunk received.
360 SPDY_GOAWAY_FRAME_CORRUPT, // GOAWAY frame could not be parsed.
453 // Serializes a GOAWAY frame. The GOAWAY frame is used
457 SpdySerializedFrame* SerializeGoAway(const SpdyGoAwayIR& goaway) const;
    [all...]
spdy_protocol.h 292 GOAWAY,
403 // Status codes for GOAWAY frames.
493 // Returns true if a given on-the-wire enumeration of a GOAWAY status code is
498 // Parses a GOAWAY status from an on-the-wire enumeration of a given protocol
500 // Behavior is undefined for invalid GOAWAY status fields; consumers should
501 // first use IsValidGoAwayStatus() to verify validity of GOAWAY status fields.
505 // Serializes a given GOAWAY status to the on-the-wire enumeration value for
507 // Returns -1 on failure (I.E. Invalid GOAWAY status for the given version).
    [all...]
spdy_test_util_common.h 384 // Construct a SPDY GOAWAY frame with last_good_stream_id = 0.
388 // Construct a SPDY GOAWAY frame with the specified last_good_stream_id.
392 // Construct a SPDY GOAWAY frame with the specified last_good_stream_id,
buffered_spdy_framer.h 93 // Called when a GOAWAY frame has been parsed.
  /external/chromium_org/net/tools/quic/
quic_client_session.cc 53 << "Already received goaway.";
quic_client_session_test.cc 91 // After receiving a GoAway, I should no longer be able to create outgoing
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
FrameWriter.java 92 void goAway(int lastGoodStreamId, ErrorCode errorCode, byte[] debugData) throws IOException;
FrameReader.java 81 void goAway(int lastGoodStreamId, ErrorCode errorCode, ByteString debugData);
Http20Draft09.java 275 handler.goAway(lastStreamId, errorCode, debugData);
440 @Override public synchronized void goAway(int lastGoodStreamId, ErrorCode errorCode,
  /external/chromium_org/net/quic/
quic_session.h 315 // Whether a GoAway has been received.
317 // Whether a GoAway has been sent.
quic_client_session_test.cc 140 // After receiving a GoAway, I should no longer be able to create outgoing
quic_headers_stream.cc 117 CloseConnection("SPDY GOAWAY frame received.");
quic_stream_factory_test.cc 183 QuicGoAwayFrame goaway(QUIC_NO_ERROR, 1, "");
184 session->OnGoAway(goaway);
    [all...]
quic_headers_stream_test.cc 299 "SPDY GOAWAY frame received."))
  /external/chromium_org/net/tools/flip_server/
spdy_interface.h 120 // Called when a GOAWAY frame has been parsed.

Completed in 1722 milliseconds

1 2