Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/frames/
H A Dquic_connection_close_frame.cc22 wire_error_code = error_code; in QuicConnectionCloseFrame()
29 wire_error_code = ietf_error; in QuicConnectionCloseFrame()
31 wire_error_code = mapping.error_code; in QuicConnectionCloseFrame()
51 connection_close_frame.wire_error_code); in operator <<()
54 os << ", wire_error_code: " << connection_close_frame.wire_error_code; in operator <<()
H A Dquic_connection_close_frame.h44 uint64_t wire_error_code = QUIC_NO_ERROR; member
H A Dquic_frames_test.cc200 frame.wire_error_code = FINAL_SIZE_ERROR; in TEST_F()
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/tools/
H A Dquic_client_interop_test_bin.cc134 if (frame.wire_error_code == NO_IETF_QUIC_ERROR) { in OnConnectionCloseFrame()
140 frame.wire_error_code)); in OnConnectionCloseFrame()
144 if (frame.wire_error_code == 0) { in OnConnectionCloseFrame()
148 << frame.wire_error_code; in OnConnectionCloseFrame()
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/http2/adapter/
H A Dnghttp2_util.cc119 Http2ErrorCode ToHttp2ErrorCode(uint32_t wire_error_code) { in ToHttp2ErrorCode() argument
120 if (wire_error_code > static_cast<int>(Http2ErrorCode::MAX_ERROR_CODE)) { in ToHttp2ErrorCode()
123 return static_cast<Http2ErrorCode>(wire_error_code); in ToHttp2ErrorCode()
H A Dnghttp2_util.h57 Http2ErrorCode ToHttp2ErrorCode(uint32_t wire_error_code);
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/spdy/core/
H A Dspdy_protocol.cc230 SpdyErrorCode ParseErrorCode(uint32_t wire_error_code) { in ParseErrorCode() argument
231 if (wire_error_code > ERROR_CODE_MAX) { in ParseErrorCode()
235 return static_cast<SpdyErrorCode>(wire_error_code); in ParseErrorCode()
H A Dspdy_protocol.h281 QUICHE_EXPORT SpdyErrorCode ParseErrorCode(uint32_t wire_error_code);
/aosp_15_r20/external/cronet/net/quic/
H A Dquic_event_logger.cc179 if (frame->wire_error_code != frame->quic_error_code) { in NetLogQuicConnectionCloseFrameParams()
180 dict.Set("quic_wire_error", static_cast<int>(frame->wire_error_code)); in NetLogQuicConnectionCloseFrameParams()
H A Dquic_chromium_client_session.cc205 RecordConnectionCloseErrorCodeImpl(histogram, frame.wire_error_code, in RecordConnectionCloseErrorCode()
210 RecordConnectionCloseErrorCodeImpl(histogram, frame.wire_error_code, in RecordConnectionCloseErrorCode()
216 RecordConnectionCloseErrorCodeImpl(histogram, frame.wire_error_code, in RecordConnectionCloseErrorCode()
221 RecordConnectionCloseErrorCodeImpl(histogram, frame.wire_error_code, in RecordConnectionCloseErrorCode()
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/
H A Dquic_framer.cc540 QuicDataWriter::GetVarInt62Len(frame.wire_error_code); in GetConnectionCloseFrameSize()
3931 frame->wire_error_code = error_code; in ProcessConnectionCloseFrame()
5826 uint32_t error_code = static_cast<uint32_t>(frame.wire_error_code); in AppendConnectionCloseFrame()
5944 if (!writer->WriteVarInt62(frame.wire_error_code)) { in AppendIetfConnectionCloseFrame()
5982 frame->wire_error_code = error_code; in ProcessIetfConnectionCloseFrame()
6909 frame->wire_error_code == NO_IETF_QUIC_ERROR) { in MaybeExtractQuicErrorCode()
H A Dquic_session.h511 uint64_t wire_error() const { return on_closed_frame_.wire_error_code; } in wire_error()
H A Dquic_framer_test.cc4018 visitor_.connection_close_frame_.wire_error_code)); in TEST_P()
4117 EXPECT_EQ(0xC0DEu, visitor_.connection_close_frame_.wire_error_code); in TEST_P()
4122 EXPECT_EQ(0xC0DEu, visitor_.connection_close_frame_.wire_error_code); in TEST_P()
4214 visitor_.connection_close_frame_.wire_error_code)); in TEST_P()
4287 EXPECT_EQ(0x11u, visitor_.connection_close_frame_.wire_error_code); in TEST_P()
4349 EXPECT_EQ(0x11u, visitor_.connection_close_frame_.wire_error_code); in TEST_P()
7587 app_close_frame.wire_error_code = 0x11; in TEST_P()
7638 app_close_frame.wire_error_code = 0x11; in TEST_P()
H A Dquic_connection.cc1785 frame.wire_error_code)) in OnConnectionCloseFrame()
1795 << ", application error code: " << frame.wire_error_code; in OnConnectionCloseFrame()
H A Dquic_connection_test.cc1359 EXPECT_THAT(connection_close_frames[0].wire_error_code, in TestConnectionCloseQuicErrorCode()
1378 EXPECT_EQ(mapping.error_code, connection_close_frames[0].wire_error_code); in TestConnectionCloseQuicErrorCode()