Lines Matching refs:GOAWAY
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:
1412 case GOAWAY: {
1860 SpdyGoAwayIR goaway(last_accepted_stream_id, status);
1861 return SerializeGoAway(goaway);
1865 const SpdyGoAwayIR& goaway) const {
1868 builder.WriteControlFrameHeader(*this, GOAWAY, kNoFlags);
1870 builder.WriteFramePrefix(*this, GOAWAY, 0, 0);
1872 builder.WriteUInt32(goaway.last_good_stream_id());
1874 builder.WriteUInt32(goaway.status());
2065 virtual void VisitGoAway(const SpdyGoAwayIR& goaway) OVERRIDE {
2066 frame_.reset(framer_->SerializeGoAway(goaway));