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 D | quic_connection_close_frame.cc | 22 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 D | quic_connection_close_frame.h | 44 uint64_t wire_error_code = QUIC_NO_ERROR; member
|
H A D | quic_frames_test.cc | 200 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 D | quic_client_interop_test_bin.cc | 134 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 D | nghttp2_util.cc | 119 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 D | nghttp2_util.h | 57 Http2ErrorCode ToHttp2ErrorCode(uint32_t wire_error_code);
|
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/spdy/core/ |
H A D | spdy_protocol.cc | 230 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 D | spdy_protocol.h | 281 QUICHE_EXPORT SpdyErrorCode ParseErrorCode(uint32_t wire_error_code);
|
/aosp_15_r20/external/cronet/net/quic/ |
H A D | quic_event_logger.cc | 179 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 D | quic_chromium_client_session.cc | 205 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 D | quic_framer.cc | 540 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 D | quic_session.h | 511 uint64_t wire_error() const { return on_closed_frame_.wire_error_code; } in wire_error()
|
H A D | quic_framer_test.cc | 4018 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 D | quic_connection.cc | 1785 frame.wire_error_code)) in OnConnectionCloseFrame() 1795 << ", application error code: " << frame.wire_error_code; in OnConnectionCloseFrame()
|
H A D | quic_connection_test.cc | 1359 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()
|