Searched refs:Http2AltSvcFields (Results 1 – 15 of 15) sorted by relevance
/external/cronet/net/third_party/quiche/src/quiche/http2/ |
D | http2_structures.h | 305 struct QUICHE_EXPORT Http2AltSvcFields { struct 312 QUICHE_EXPORT bool operator==(const Http2AltSvcFields& a, argument 313 const Http2AltSvcFields& b); 314 QUICHE_EXPORT inline bool operator!=(const Http2AltSvcFields& a, 315 const Http2AltSvcFields& b) { 319 const Http2AltSvcFields& v);
|
D | http2_structures.cc | 128 bool operator==(const Http2AltSvcFields& a, const Http2AltSvcFields& b) { in operator ==() 131 std::ostream& operator<<(std::ostream& out, const Http2AltSvcFields& v) { in operator <<()
|
D | http2_structures_test.cc | 529 Http2AltSvcFields v{origin_length}; in TEST() 537 Http2AltSvcFields w{++origin_length}; in TEST() 544 EXPECT_TRUE(VerifyRandomCalls<Http2AltSvcFields>()); in TEST()
|
/external/cronet/net/third_party/quiche/src/quiche/http2/test_tools/ |
D | http2_frame_builder_test.cc | 217 fb.Append(Http2AltSvcFields{99}); in TEST() 218 fb.Append(Http2AltSvcFields{0}); // No optional origin in TEST() 222 EXPECT_EQ(kData.size(), 2 * Http2AltSvcFields::EncodedSize()); in TEST()
|
D | http2_structures_test_util.h | 36 void Randomize(Http2AltSvcFields* out, Http2Random* rng);
|
D | http2_frame_builder.h | 79 void Append(const Http2AltSvcFields& v);
|
D | http2_structures_test_util.cc | 50 void Randomize(Http2AltSvcFields* out, Http2Random* rng) { in Randomize()
|
D | http2_frame_builder.cc | 135 void Http2FrameBuilder::Append(const Http2AltSvcFields& v) { in Append()
|
/external/cronet/net/third_party/quiche/src/quiche/http2/decoder/payload_decoders/ |
D | altsvc_payload_decoder_test.cc | 78 fb.Append(Http2AltSvcFields{0xffff}); // The longest possible origin length. in TEST_F() 108 fb.Append(Http2AltSvcFields{origin_length_}); in TEST_P()
|
D | altsvc_payload_decoder.h | 58 Http2AltSvcFields altsvc_fields_;
|
D | altsvc_payload_decoder.cc | 120 Http2AltSvcFields::EncodedSize(); in DecodeStrings()
|
/external/cronet/net/third_party/quiche/src/quiche/http2/decoder/ |
D | decode_http2_structures.cc | 114 void DoDecode(Http2AltSvcFields* out, DecodeBuffer* b) { in DoDecode() 117 QUICHE_DCHECK_LE(Http2AltSvcFields::EncodedSize(), b->Remaining()); in DoDecode()
|
D | decode_http2_structures.h | 28 QUICHE_EXPORT void DoDecode(Http2AltSvcFields* out, DecodeBuffer* b);
|
D | decode_http2_structures_test.cc | 421 class AltSvcFieldsDecoderTest : public StructureDecoderTest<Http2AltSvcFields> {
|
D | http2_structure_decoder_test.cc | 497 : public Http2StructureDecoderTest<Http2AltSvcFields> {};
|