• Home
  • Raw
  • Download

Lines Matching refs:Http2Error

58 enum class Http2Error : uint32_t {  enum
81 using internal::Http2Error;
218 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessFrame()
222 SendGoAway(Http2Error::INTERNAL_ERROR); in ProcessFrame()
390 Http2Error code) { in SendRstStream()
675 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessDataFrame()
719 PW_TRY(SendRstStreamAndClose(state, stream, Http2Error::STREAM_CLOSED)); in ProcessDataFrame()
732 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ProcessDataFrame()
741 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessDataFrame()
781 SendRstStreamAndClose(state, stream, Http2Error::INTERNAL_ERROR)); in ProcessDataFrame()
791 SendRstStreamAndClose(state, stream, Http2Error::INTERNAL_ERROR)); in ProcessDataFrame()
801 SendRstStreamAndClose(state, stream, Http2Error::INTERNAL_ERROR)); in ProcessDataFrame()
842 PW_TRY(SendRstStreamAndClose(state, stream, Http2Error::INTERNAL_ERROR)); in ProcessDataFrame()
878 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessHeadersFrame()
887 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessHeadersFrame()
909 SendRstStreamAndClose(state, stream, Http2Error::PROTOCOL_ERROR)); in ProcessHeadersFrame()
921 PW_TRY(state->SendRstStream(frame.stream_id, Http2Error::PROTOCOL_ERROR)); in ProcessHeadersFrame()
926 SendGoAway(Http2Error::INTERNAL_ERROR); in ProcessHeadersFrame()
939 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ProcessHeadersFrame()
947 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessHeadersFrame()
958 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ProcessHeadersFrame()
969 return state->SendRstStream(frame.stream_id, Http2Error::REFUSED_STREAM); in ProcessHeadersFrame()
978 return SendRstStreamAndClose(state, stream, Http2Error::INTERNAL_ERROR); in ProcessHeadersFrame()
1038 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessRstStreamFrame()
1045 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessRstStreamFrame()
1051 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ProcessRstStreamFrame()
1083 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ProcessSettingsFrame()
1093 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ProcessSettingsFrame()
1102 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessSettingsFrame()
1120 SendGoAway(Http2Error::FLOW_CONTROL_ERROR); in ProcessSettingsFrame()
1132 SendGoAway(Http2Error::FLOW_CONTROL_ERROR); in ProcessSettingsFrame()
1142 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessSettingsFrame()
1174 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessPingFrame()
1180 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ProcessPingFrame()
1226 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ProcessWindowUpdateFrame()
1244 SendGoAway(Http2Error::PROTOCOL_ERROR); in ProcessWindowUpdateFrame()
1251 return SendRstStreamAndClose(state, stream, Http2Error::PROTOCOL_ERROR); in ProcessWindowUpdateFrame()
1262 SendGoAway(Http2Error::FLOW_CONTROL_ERROR); in ProcessWindowUpdateFrame()
1273 state, stream, Http2Error::FLOW_CONTROL_ERROR); in ProcessWindowUpdateFrame()
1302 SendGoAway(Http2Error::FRAME_SIZE_ERROR); in ReadFramePayload()
1311 void Connection::Reader::SendGoAway(Http2Error code) { in SendGoAway()
1347 Http2Error code) { in SendRstStreamAndClose()