Searched refs:HttpDecoder (Results 1 – 9 of 9) sorted by relevance
/external/cronet/net/third_party/quiche/src/quiche/quic/core/http/ |
D | http_decoder.cc | 34 HttpDecoder::HttpDecoder(Visitor* visitor) : HttpDecoder(visitor, Options()) {} in HttpDecoder() function in quic::HttpDecoder 35 HttpDecoder::HttpDecoder(Visitor* visitor, Options options) in HttpDecoder() function in quic::HttpDecoder 51 HttpDecoder::~HttpDecoder() {} in ~HttpDecoder() 54 bool HttpDecoder::DecodeSettings(const char* data, QuicByteCount len, in DecodeSettings() 96 QuicByteCount HttpDecoder::ProcessInput(const char* data, QuicByteCount len) { in ProcessInput() 129 QUIC_BUG(HttpDecoder PARSING_NO_LONGER_POSSIBLE) in ProcessInput() 146 bool HttpDecoder::ReadFrameType(QuicDataReader* reader) { in ReadFrameType() 204 bool HttpDecoder::ReadFrameLength(QuicDataReader* reader) { in ReadFrameLength() 303 bool HttpDecoder::IsFrameBuffered() { in IsFrameBuffered() 321 bool HttpDecoder::ReadFramePayload(QuicDataReader* reader) { in ReadFramePayload() [all …]
|
D | http_decoder.h | 28 class QUIC_EXPORT_PRIVATE HttpDecoder { 40 virtual void OnError(HttpDecoder* decoder) = 0; 121 explicit HttpDecoder(Visitor* visitor); 122 explicit HttpDecoder(Visitor* visitor, Options options); 124 ~HttpDecoder();
|
D | quic_receive_control_stream.h | 21 public HttpDecoder::Visitor { 37 void OnError(HttpDecoder* decoder) override; 72 HttpDecoder decoder_;
|
D | http_decoder_test.cc | 34 static uint64_t current_frame_type(HttpDecoder* decoder) { in current_frame_type() 99 HttpDecoder decoder_; 271 HttpDecoder decoder(&visitor_); in TEST_F() 569 HttpDecoder decoder(&visitor); in TEST_F() 698 HttpDecoder decoder(&visitor_); in TEST_F() 708 HttpDecoder decoder(&visitor_); in TEST_F() 901 HttpDecoder decoder(&visitor_); in TEST_F() 998 HttpDecoder::Options options; in TEST() 1001 HttpDecoder decoder(&visitor, options); in TEST() 1011 HttpDecoder::Options options; in TEST() [all …]
|
D | quic_receive_control_stream.cc | 63 void QuicReceiveControlStream::OnError(HttpDecoder* decoder) { in OnError()
|
D | quic_spdy_stream.cc | 48 class QuicSpdyStream::HttpDecoderVisitor : public HttpDecoder::Visitor { 54 void OnError(HttpDecoder* decoder) override { in OnError() 169 HttpDecoder::Options HttpDecoderOptionsForBidiStream( in HttpDecoderOptionsForBidiStream() 171 HttpDecoder::Options options; in HttpDecoderOptionsForBidiStream()
|
D | quic_spdy_session.cc | 70 class AlpsFrameDecoder : public HttpDecoder::Visitor { 76 void OnError(HttpDecoder* /*decoder*/) override {} in OnError() argument 953 if (!HttpDecoder::DecodeSettings( in ResumeApplicationState() 972 HttpDecoder decoder(&alps_frame_decoder); in OnAlpsData()
|
D | quic_spdy_stream.h | 455 HttpDecoder decoder_;
|
/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/ |
D | quic_test_utils.h | 1474 class MockHttpDecoderVisitor : public HttpDecoder::Visitor { 1479 MOCK_METHOD(void, OnError, (HttpDecoder*), (override));
|