Home
last modified time | relevance | path

Searched refs:Http2AltSvcFields (Results 1 – 15 of 15) sorted by relevance

/external/cronet/net/third_party/quiche/src/quiche/http2/
Dhttp2_structures.h305 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);
Dhttp2_structures.cc128 bool operator==(const Http2AltSvcFields& a, const Http2AltSvcFields& b) { in operator ==()
131 std::ostream& operator<<(std::ostream& out, const Http2AltSvcFields& v) { in operator <<()
Dhttp2_structures_test.cc529 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/
Dhttp2_frame_builder_test.cc217 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()
Dhttp2_structures_test_util.h36 void Randomize(Http2AltSvcFields* out, Http2Random* rng);
Dhttp2_frame_builder.h79 void Append(const Http2AltSvcFields& v);
Dhttp2_structures_test_util.cc50 void Randomize(Http2AltSvcFields* out, Http2Random* rng) { in Randomize()
Dhttp2_frame_builder.cc135 void Http2FrameBuilder::Append(const Http2AltSvcFields& v) { in Append()
/external/cronet/net/third_party/quiche/src/quiche/http2/decoder/payload_decoders/
Daltsvc_payload_decoder_test.cc78 fb.Append(Http2AltSvcFields{0xffff}); // The longest possible origin length. in TEST_F()
108 fb.Append(Http2AltSvcFields{origin_length_}); in TEST_P()
Daltsvc_payload_decoder.h58 Http2AltSvcFields altsvc_fields_;
Daltsvc_payload_decoder.cc120 Http2AltSvcFields::EncodedSize(); in DecodeStrings()
/external/cronet/net/third_party/quiche/src/quiche/http2/decoder/
Ddecode_http2_structures.cc114 void DoDecode(Http2AltSvcFields* out, DecodeBuffer* b) { in DoDecode()
117 QUICHE_DCHECK_LE(Http2AltSvcFields::EncodedSize(), b->Remaining()); in DoDecode()
Ddecode_http2_structures.h28 QUICHE_EXPORT void DoDecode(Http2AltSvcFields* out, DecodeBuffer* b);
Ddecode_http2_structures_test.cc421 class AltSvcFieldsDecoderTest : public StructureDecoderTest<Http2AltSvcFields> {
Dhttp2_structure_decoder_test.cc497 : public Http2StructureDecoderTest<Http2AltSvcFields> {};