Searched refs:QuicErrorCode (Results 1 - 25 of 56) sorted by relevance

123

/external/chromium_org/net/quic/crypto/
H A Dcrypto_handshake_message.h77 QuicErrorCode GetTaglist(QuicTag tag, const QuicTag** out_tags,
85 QuicErrorCode GetNthValue24(QuicTag tag,
88 QuicErrorCode GetUint16(QuicTag tag, uint16* out) const;
89 QuicErrorCode GetUint32(QuicTag tag, uint32* out) const;
90 QuicErrorCode GetUint64(QuicTag tag, uint64* out) const;
119 QuicErrorCode GetPOD(QuicTag tag, void* out, size_t len) const;
H A Dcrypto_framer.h58 QuicErrorCode error() const { return error_; }
79 QuicErrorCode Process(base::StringPiece input);
96 QuicErrorCode error_;
H A Dquic_crypto_client_config.h57 QuicErrorCode SetServerConfig(base::StringPiece server_config,
173 QuicErrorCode FillClientHello(const QuicServerId& server_id,
191 QuicErrorCode ProcessRejection(const CryptoHandshakeMessage& rej,
206 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello,
218 QuicErrorCode ProcessServerConfigUpdate(
276 QuicErrorCode CacheNewServerConfig(
H A Dcrypto_handshake_message.cc99 QuicErrorCode CryptoHandshakeMessage::GetTaglist(QuicTag tag,
103 QuicErrorCode ret = QUIC_NO_ERROR;
132 QuicErrorCode CryptoHandshakeMessage::GetNthValue24(QuicTag tag,
168 QuicErrorCode CryptoHandshakeMessage::GetUint16(QuicTag tag,
173 QuicErrorCode CryptoHandshakeMessage::GetUint32(QuicTag tag,
178 QuicErrorCode CryptoHandshakeMessage::GetUint64(QuicTag tag,
213 QuicErrorCode CryptoHandshakeMessage::GetPOD(
216 QuicErrorCode ret = QUIC_NO_ERROR;
H A Dquic_crypto_client_config.cc124 QuicErrorCode QuicCryptoClientConfig::CachedState::SetServerConfig(
233 QuicErrorCode error = SetServerConfig(server_config, now,
390 QuicErrorCode QuicCryptoClientConfig::FillClientHello(
578 QuicErrorCode QuicCryptoClientConfig::CacheNewServerConfig(
592 QuicErrorCode error = cached->SetServerConfig(scfg, now, error_details);
635 QuicErrorCode QuicCryptoClientConfig::ProcessRejection(
649 QuicErrorCode error = CacheNewServerConfig(rej, now, out_params->cached_certs,
688 QuicErrorCode QuicCryptoClientConfig::ProcessServerHello(
764 QuicErrorCode QuicCryptoClientConfig::ProcessServerConfigUpdate(
/external/chromium_org/net/quic/
H A Dquic_config.h51 virtual QuicErrorCode ProcessPeerHello(
98 virtual QuicErrorCode ProcessPeerHello(
131 virtual QuicErrorCode ProcessPeerHello(
140 QuicErrorCode ReadVector(const CryptoHandshakeMessage& msg,
172 virtual QuicErrorCode ProcessPeerHello(
206 virtual QuicErrorCode ProcessPeerHello(
242 virtual QuicErrorCode ProcessPeerHello(
366 // the corresponding QuicErrorCode and sets detailed error in |error_details|.
367 QuicErrorCode ProcessPeerHello(const CryptoHandshakeMessage& peer_hello,
H A Dquic_server_session.h41 QuicErrorCode error) = 0;
52 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE;
H A Dreliable_quic_stream.h57 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer);
68 virtual void CloseConnection(QuicErrorCode error);
69 virtual void CloseConnectionWithDetails(QuicErrorCode error,
79 QuicErrorCode connection_error() const { return connection_error_; }
215 QuicErrorCode connection_error_;
H A Dquic_config_test.cc48 QuicErrorCode error = msg.GetUint32(kICSL, &value);
105 const QuicErrorCode error =
156 const QuicErrorCode error =
193 const QuicErrorCode error =
210 const QuicErrorCode error =
223 const QuicErrorCode error =
234 const QuicErrorCode error =
248 const QuicErrorCode error =
263 const QuicErrorCode error =
278 const QuicErrorCode erro
[all...]
H A Dquic_config.cc23 QuicErrorCode ReadUint32(const CryptoHandshakeMessage& msg,
30 QuicErrorCode error = msg.GetUint32(tag, out);
94 QuicErrorCode QuicNegotiableUint32::ProcessPeerHello(
101 QuicErrorCode error = ReadUint32(peer_hello,
153 QuicErrorCode QuicNegotiableTag::ReadVector(
159 QuicErrorCode error = msg.GetTaglist(tag_, out, out_length);
179 QuicErrorCode QuicNegotiableTag::ProcessPeerHello(
187 QuicErrorCode error = ReadVector(peer_hello, &received_tags,
261 QuicErrorCode QuicFixedUint32::ProcessPeerHello(
266 QuicErrorCode erro
[all...]
H A Dquic_reliable_client_stream.h35 virtual void OnClose(QuicErrorCode error) = 0;
H A Dquic_session.h69 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE;
128 void SendGoAway(QuicErrorCode error_code, const std::string& reason);
203 QuicErrorCode error() const { return error_; }
313 QuicErrorCode error_;
H A Dquic_utils.h56 // Returns the name of the QuicErrorCode as a char*
57 static const char* ErrorToString(QuicErrorCode error);
H A Dquic_connection.h88 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) = 0;
208 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) {}
298 virtual void SendConnectionClosePacket(QuicErrorCode error,
303 virtual void SendConnectionClose(QuicErrorCode error);
304 virtual void SendConnectionCloseWithDetails(QuicErrorCode error,
307 virtual void CloseConnection(QuicErrorCode error, bool from_peer) OVERRIDE;
308 virtual void SendGoAway(QuicErrorCode error,
H A Dquic_client_session.h148 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE;
206 void CloseSessionOnErrorInner(int net_error, QuicErrorCode quic_error);
H A Dquic_crypto_server_stream.h85 virtual QuicErrorCode ProcessClientHello(
H A Dquic_framer.h241 QuicErrorCode error() const {
488 bool RaiseError(QuicErrorCode error);
490 void set_error(QuicErrorCode error) {
503 QuicErrorCode error_;
H A Dquic_packet_generator.h81 virtual void CloseConnection(QuicErrorCode error, bool from_peer) = 0;
H A Dquic_crypto_client_stream.h134 QuicErrorCode DoVerifyProofComplete(
H A Dquic_server_session.cc50 void QuicServerSession::OnConnectionClosed(QuicErrorCode error,
/external/chromium_org/net/tools/quic/
H A Dquic_server_session.h42 QuicErrorCode error) = 0;
53 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE;
H A Dquic_server_session.cc50 void QuicServerSession::OnConnectionClosed(QuicErrorCode error,
/external/chromium_org/net/tools/quic/test_tools/
H A Dquic_test_utils.h65 MOCK_METHOD1(SendConnectionClose, void(QuicErrorCode error));
67 QuicErrorCode error,
69 MOCK_METHOD2(SendConnectionClosePacket, void(QuicErrorCode error,
74 MOCK_METHOD3(SendGoAway, void(QuicErrorCode error,
138 QuicErrorCode error));
/external/chromium_org/net/quic/test_tools/
H A Dmock_crypto_client_stream.cc99 const QuicErrorCode error =
H A Dquic_test_utils.h239 MOCK_METHOD2(OnConnectionClosed, void(QuicErrorCode error, bool from_peer));
293 MOCK_METHOD1(SendConnectionClose, void(QuicErrorCode error));
294 MOCK_METHOD2(SendConnectionCloseWithDetails, void(QuicErrorCode error,
296 MOCK_METHOD2(SendConnectionClosePacket, void(QuicErrorCode error,
301 MOCK_METHOD3(SendGoAway, void(QuicErrorCode error,
347 MOCK_METHOD2(OnConnectionClosed, void(QuicErrorCode error, bool from_peer));

Completed in 1191 milliseconds

123