HomeSort by relevance Sort by last modified time
    Searched refs:QuicErrorCode (Results 1 - 25 of 50) 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,
184 // the corresponding QuicErrorCode and sets detailed error in |error_details|.
185 QuicErrorCode ProcessClientHello(const CryptoHandshakeMessage& client_hello,
189 // the corresponding QuicErrorCode and sets detailed error in |error_details|.
190 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello
    [all...]
reliable_quic_stream.h 59 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer);
70 virtual void CloseConnection(QuicErrorCode error);
71 virtual void CloseConnectionWithDetails(QuicErrorCode error,
81 QuicErrorCode connection_error() const { return connection_error_; }
142 QuicErrorCode connection_error_;
quic_config.cc 50 QuicErrorCode QuicNegotiableUint32::ReadUint32(
55 QuicErrorCode error = msg.GetUint32(tag_, out);
74 QuicErrorCode QuicNegotiableUint32::ProcessClientHello(
80 QuicErrorCode error = ReadUint32(client_hello, &value, error_details);
91 QuicErrorCode QuicNegotiableUint32::ProcessServerHello(
97 QuicErrorCode error = ReadUint32(server_hello, &value, error_details);
146 QuicErrorCode QuicNegotiableTag::ReadVector(
152 QuicErrorCode error = msg.GetTaglist(tag_, out, out_length);
172 QuicErrorCode QuicNegotiableTag::ProcessClientHello(
179 QuicErrorCode error = ReadVector(client_hello, &received_tags
    [all...]
quic_config_test.cc 41 QuicErrorCode error = msg.GetUint32(kICSL, &value);
89 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
122 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
143 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
153 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
166 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
180 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
194 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
quic_crypto_server_stream.h 42 virtual QuicErrorCode ProcessClientHello(
quic_reliable_client_stream.h 35 virtual void OnClose(QuicErrorCode error) = 0;
quic_session.h 66 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE;
94 void SendGoAway(QuicErrorCode error_code, const std::string& reason);
173 QuicErrorCode error() const { return error_; }
291 QuicErrorCode error_;
quic_client_session.h 130 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE;
180 void CloseSessionOnErrorInner(int net_error, QuicErrorCode quic_error);
quic_connection_logger.h 59 void OnConnectionClosed(QuicErrorCode error, bool from_peer);
quic_packet_generator.h 74 virtual void CloseConnection(QuicErrorCode error, bool from_peer) = 0;
quic_utils.h 56 // Returns the name of the QuicErrorCode as a char*
57 static const char* ErrorToString(QuicErrorCode error);
quic_connection.h 81 virtual void OnConnectionClosed(QuicErrorCode error,
223 virtual void SendConnectionClosePacket(QuicErrorCode error,
228 virtual void SendConnectionClose(QuicErrorCode error);
229 virtual void SendConnectionCloseWithDetails(QuicErrorCode error,
232 virtual void CloseConnection(QuicErrorCode error, bool from_peer) OVERRIDE;
233 virtual void SendGoAway(QuicErrorCode error,
quic_crypto_server_stream.cc 73 QuicErrorCode error = ProcessClientHello(
157 QuicErrorCode QuicCryptoServerStream::ProcessClientHello(
quic_framer.h 220 QuicErrorCode error() const {
460 bool RaiseError(QuicErrorCode error);
462 void set_error(QuicErrorCode error) {
475 QuicErrorCode error_;
reliable_quic_stream.cc 80 void ReliableQuicStream::OnConnectionClosed(QuicErrorCode error,
106 void ReliableQuicStream::CloseConnection(QuicErrorCode error) {
110 void ReliableQuicStream::CloseConnectionWithDetails(QuicErrorCode error,
  /external/chromium_org/net/quic/crypto/
crypto_handshake.h 90 QuicErrorCode GetTaglist(QuicTag tag, const QuicTag** out_tags,
98 QuicErrorCode GetNthValue24(QuicTag tag,
101 QuicErrorCode GetUint16(QuicTag tag, uint16* out) const;
102 QuicErrorCode GetUint32(QuicTag tag, uint32* out) const;
103 QuicErrorCode GetUint64(QuicTag tag, uint64* out) const;
132 QuicErrorCode GetPOD(QuicTag tag, void* out, size_t len) const;
crypto_framer.h 60 QuicErrorCode error() const { return error_; }
81 QuicErrorCode Process(base::StringPiece input);
98 QuicErrorCode error_;
quic_crypto_client_config.h 46 QuicErrorCode SetServerConfig(base::StringPiece server_config,
145 QuicErrorCode FillClientHello(const std::string& server_hostname,
161 QuicErrorCode ProcessRejection(const CryptoHandshakeMessage& rej,
175 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello,
crypto_handshake.cc 109 QuicErrorCode CryptoHandshakeMessage::GetTaglist(QuicTag tag,
113 QuicErrorCode ret = QUIC_NO_ERROR;
142 QuicErrorCode CryptoHandshakeMessage::GetNthValue24(QuicTag tag,
178 QuicErrorCode CryptoHandshakeMessage::GetUint16(QuicTag tag,
183 QuicErrorCode CryptoHandshakeMessage::GetUint32(QuicTag tag,
188 QuicErrorCode CryptoHandshakeMessage::GetUint64(QuicTag tag,
223 QuicErrorCode CryptoHandshakeMessage::GetPOD(
226 QuicErrorCode ret = QUIC_NO_ERROR;
  /external/chromium_org/net/tools/quic/
quic_server_session.h 39 virtual void OnConnectionClosed(QuicGuid guid, QuicErrorCode error) = 0;
49 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE;
quic_server_session.cc 36 void QuicServerSession::OnConnectionClosed(QuicErrorCode error,
quic_dispatcher.h 93 virtual void OnConnectionClosed(QuicGuid guid, QuicErrorCode error) OVERRIDE;
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_utils.h 69 MOCK_METHOD1(SendConnectionClose, void(QuicErrorCode error));
71 QuicErrorCode error,
75 MOCK_METHOD3(SendGoAway, void(QuicErrorCode error,
130 MOCK_METHOD2(OnConnectionClosed, void(QuicGuid guid, QuicErrorCode error));
  /external/chromium_org/net/quic/test_tools/
mock_crypto_client_stream.cc 79 const QuicErrorCode error =
  /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 66 milliseconds

1 2