HomeSort by relevance Sort by last modified time
    Searched refs:QuicErrorCode (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/net/quic/
quic_config.h 64 QuicErrorCode ProcessClientHello(const CryptoHandshakeMessage& client_hello,
71 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello,
78 QuicErrorCode ReadUint32(const CryptoHandshakeMessage& msg,
109 QuicErrorCode ProcessClientHello(const CryptoHandshakeMessage& client_hello,
115 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello,
122 QuicErrorCode ReadVector(const CryptoHandshakeMessage& msg,
172 // the corresponding QuicErrorCode and sets detailed error in |error_details|.
173 QuicErrorCode ProcessClientHello(const CryptoHandshakeMessage& client_hello,
177 // the corresponding QuicErrorCode and sets detailed error in |error_details|.
178 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello
    [all...]
quic_crypto_stream.h 53 void CloseConnection(QuicErrorCode error);
54 void CloseConnectionWithDetails(QuicErrorCode error, const string& details);
quic_crypto_stream.cc 44 void QuicCryptoStream::CloseConnection(QuicErrorCode error) {
48 void QuicCryptoStream::CloseConnectionWithDetails(QuicErrorCode error,
quic_config.cc 47 QuicErrorCode QuicNegotiableUint32::ReadUint32(
52 QuicErrorCode error = msg.GetUint32(tag_, out);
71 QuicErrorCode QuicNegotiableUint32::ProcessClientHello(
77 QuicErrorCode error = ReadUint32(client_hello, &value, error_details);
88 QuicErrorCode QuicNegotiableUint32::ProcessServerHello(
94 QuicErrorCode error = ReadUint32(server_hello, &value, error_details);
141 QuicErrorCode QuicNegotiableTag::ReadVector(
147 QuicErrorCode error = msg.GetTaglist(tag_, out, out_length);
167 QuicErrorCode QuicNegotiableTag::ProcessClientHello(
174 QuicErrorCode error = ReadVector(client_hello, &received_tags
    [all...]
quic_crypto_server_stream.h 41 virtual QuicErrorCode ProcessClientHello(
quic_config_test.cc 36 QuicErrorCode error = msg.GetUint32(kICSL, &value);
66 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
92 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
109 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
119 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
132 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
146 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
160 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
reliable_quic_stream.h 69 virtual void ConnectionClose(QuicErrorCode error, bool from_peer);
101 QuicErrorCode connection_error() const { return connection_error_; }
186 QuicErrorCode connection_error_;
quic_reliable_client_stream.h 46 virtual void OnClose(QuicErrorCode error) = 0;
quic_session.h 68 virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE;
86 void SendGoAway(QuicErrorCode error_code, const std::string& reason);
153 QuicErrorCode error() const { return error_; }
246 QuicErrorCode error_;
quic_utils.h 55 // Returns the name of the QuicErrorCode as a char*
56 static const char* ErrorToString(QuicErrorCode error);
quic_crypto_server_stream.cc 44 QuicErrorCode error = ProcessClientHello(message, &reply, &error_details);
126 QuicErrorCode QuicCryptoServerStream::ProcessClientHello(
quic_framer.h 209 QuicErrorCode error() const {
409 bool RaiseError(QuicErrorCode error);
411 void set_error(QuicErrorCode error) {
424 QuicErrorCode error_;
quic_reliable_client_stream_test.cc 27 MOCK_METHOD1(OnClose, void(QuicErrorCode));
quic_connection.h 72 virtual void ConnectionClose(QuicErrorCode error,
219 virtual void SendConnectionClosePacket(QuicErrorCode error,
224 virtual void SendConnectionClose(QuicErrorCode error);
225 virtual void SendConnectionCloseWithDetails(QuicErrorCode error,
228 void CloseConnection(QuicErrorCode error, bool from_peer);
229 virtual void SendGoAway(QuicErrorCode error,
quic_client_session.h 108 virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE;
  /external/chromium_org/net/quic/crypto/
crypto_framer.h 60 QuicErrorCode error() const { return error_; }
81 QuicErrorCode Process(base::StringPiece input);
87 void set_error(QuicErrorCode error) { error_ = error; }
100 QuicErrorCode error_;
crypto_handshake.h 93 QuicErrorCode GetTaglist(QuicTag tag, const QuicTag** out_tags,
101 QuicErrorCode GetNthValue24(QuicTag tag,
104 QuicErrorCode GetUint16(QuicTag tag, uint16* out) const;
105 QuicErrorCode GetUint32(QuicTag tag, uint32* out) const;
106 QuicErrorCode GetUint64(QuicTag tag, uint64* out) const;
135 QuicErrorCode GetPOD(QuicTag tag, void* out, size_t len) const;
258 QuicErrorCode SetServerConfig(base::StringPiece server_config,
341 QuicErrorCode FillClientHello(const std::string& server_hostname,
356 QuicErrorCode ProcessRejection(CachedState* cached,
366 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello
    [all...]
crypto_handshake.cc 126 QuicErrorCode CryptoHandshakeMessage::GetTaglist(QuicTag tag,
130 QuicErrorCode ret = QUIC_NO_ERROR;
159 QuicErrorCode CryptoHandshakeMessage::GetNthValue24(QuicTag tag,
195 QuicErrorCode CryptoHandshakeMessage::GetUint16(QuicTag tag,
200 QuicErrorCode CryptoHandshakeMessage::GetUint32(QuicTag tag,
205 QuicErrorCode CryptoHandshakeMessage::GetUint64(QuicTag tag,
240 QuicErrorCode CryptoHandshakeMessage::GetPOD(
243 QuicErrorCode ret = QUIC_NO_ERROR;
403 QuicErrorCode QuicCryptoClientConfig::CachedState::SetServerConfig(
612 QuicErrorCode QuicCryptoClientConfig::FillClientHello
    [all...]
crypto_server_config.h 131 QuicErrorCode ProcessClientHello(const CryptoHandshakeMessage& client_hello,
257 QuicErrorCode EvaluateClientHello(
  /external/chromium_org/net/tools/quic/
quic_server_session.h 35 virtual void OnConnectionClose(QuicGuid guid, QuicErrorCode error) = 0;
45 virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE;
quic_server_session.cc 35 void QuicServerSession::ConnectionClose(QuicErrorCode error, bool from_peer) {
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_utils.h 49 MOCK_METHOD1(SendConnectionClose, void(QuicErrorCode error));
51 QuicErrorCode error,
55 MOCK_METHOD3(SendGoAway, void(QuicErrorCode error,
  /external/chromium_org/net/quic/test_tools/
mock_crypto_client_stream.cc 69 const QuicErrorCode error =
quic_test_utils.h 188 MOCK_METHOD2(ConnectionClose, void(QuicErrorCode error, bool from_peer));
233 MOCK_METHOD1(SendConnectionClose, void(QuicErrorCode error));
234 MOCK_METHOD2(SendConnectionCloseWithDetails, void(QuicErrorCode error,
238 MOCK_METHOD3(SendGoAway, void(QuicErrorCode error,
287 MOCK_METHOD2(ConnectionClose, void(QuicErrorCode error, bool from_peer));
  /external/chromium_org/net/base/
net_log_logger.cc 118 for (net::QuicErrorCode error = net::QUIC_NO_ERROR;
120 error = static_cast<net::QuicErrorCode>(error + 1)) {

Completed in 230 milliseconds

1 2