/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/ |
SpdyConnectionTest.java | 692 peer.sendFrame().goAway(0, 1, GOAWAY_PROTOCOL_ERROR); 736 peer.acceptFrame(); // GOAWAY 755 MockSpdyPeer.InFrame goaway = peer.takeFrame(); 756 assertEquals(TYPE_GOAWAY, goaway.type); 757 assertEquals(0, goaway.streamId); 758 assertEquals(GOAWAY_PROTOCOL_ERROR, goaway.statusCode); 763 peer.acceptFrame(); // GOAWAY 777 MockSpdyPeer.InFrame goaway = peer.takeFrame(); 778 assertEquals(TYPE_GOAWAY, goaway.type); 779 assertEquals(GOAWAY_INTERNAL_ERROR, goaway.statusCode) [all...] |
/external/chromium_org/net/spdy/ |
spdy_framer.cc | 232 // Size, in bytes, of this GOAWAY frame. Calculated as: 236 // SPDY 3+ GOAWAY frames also contain a status. 413 case GOAWAY: 414 return "GOAWAY"; 727 case GOAWAY: [all...] |
spdy_session_unittest.cc | 287 // A session receiving a GOAWAY frame with no active streams should 293 scoped_ptr<SpdyFrame> goaway(spdy_util_.ConstructSpdyGoAway(1)); 295 CreateMockRead(*goaway, 0), 313 // Read and process the GOAWAY frame. 321 // A session receiving a GOAWAY frame immediately with no active 327 scoped_ptr<SpdyFrame> goaway(spdy_util_.ConstructSpdyGoAway(1)); 329 CreateMockRead(*goaway, 0, SYNCHRONOUS), 348 // A session receiving a GOAWAY frame with active streams should close 354 scoped_ptr<SpdyFrame> goaway(spdy_util_.ConstructSpdyGoAway(1)); 356 CreateMockRead(*goaway, 2) [all...] |
spdy_framer.h | 202 // Called when a GOAWAY frame has been parsed. 412 // Creates and serializes a GOAWAY frame. The GOAWAY frame is used 418 SpdySerializedFrame* SerializeGoAway(const SpdyGoAwayIR& goaway) const;
|
spdy_protocol.h | 282 GOAWAY, 348 // Status codes for GOAWAY frames. 786 virtual void VisitGoAway(const SpdyGoAwayIR& goaway) = 0;
|
/external/chromium/net/spdy/ |
spdy_session_unittest.cc | 107 TEST_F(SpdySessionTest, GoAway) { 112 scoped_ptr<spdy::SpdyFrame> goaway(ConstructSpdyGoAway()); 114 CreateMockRead(*goaway),
|
/external/chromium_org/net/quic/test_tools/ |
quic_test_utils.h | 196 QuicGoAwayFrame* goaway() { return goaway_.get(); } function in class:net::test::FramerVisitorCapturingFrames
|
/external/chromium_org/net/quic/ |
quic_connection_test.cc | 2699 QuicGoAwayFrame goaway; local [all...] |
/external/chromium/net/http/ |
http_network_transaction_unittest.cc | [all...] |
/external/chromium_org/net/http/ |
http_network_transaction_unittest.cc | [all...] |