/external/chromium_org/net/quic/crypto/ |
crypto_handshake.cc | 31 CryptoHandshakeMessage::CryptoHandshakeMessage() 35 CryptoHandshakeMessage::CryptoHandshakeMessage( 36 const CryptoHandshakeMessage& other) 44 CryptoHandshakeMessage::~CryptoHandshakeMessage() {} 46 CryptoHandshakeMessage& CryptoHandshakeMessage::operator=( 47 const CryptoHandshakeMessage& other) [all...] |
crypto_server_test.cc | 35 scoped_ptr<CryptoHandshakeMessage> msg( 51 CryptoHandshakeMessage client_hello = CryptoTestUtils::Message( 92 virtual void RunImpl(const CryptoHandshakeMessage& client_hello, 107 void ShouldSucceed(const CryptoHandshakeMessage& message) { 113 void ShouldSucceed(const CryptoHandshakeMessage& message, 121 const CryptoHandshakeMessage& message) { 128 const CryptoHandshakeMessage& message, 135 void ProcessValidationResult(const CryptoHandshakeMessage& message, 158 CryptoHandshakeMessage InchoateClientHello(const char* message_tag, ...) { 162 CryptoHandshakeMessage message [all...] |
quic_crypto_client_config_test.cc | 19 CryptoHandshakeMessage msg; 44 CryptoHandshakeMessage msg;
|
crypto_framer.cc | 27 explicit OneShotVisitor(CryptoHandshakeMessage* out) 35 const CryptoHandshakeMessage& message) OVERRIDE { 42 CryptoHandshakeMessage* const out_; 58 CryptoHandshakeMessage* CryptoFramer::ParseMessage(StringPiece in) { 59 scoped_ptr<CryptoHandshakeMessage> msg(new CryptoHandshakeMessage); 88 const CryptoHandshakeMessage& message) {
|
crypto_handshake.h | 33 class NET_EXPORT_PRIVATE CryptoHandshakeMessage { 35 CryptoHandshakeMessage(); 36 CryptoHandshakeMessage(const CryptoHandshakeMessage& other); 37 ~CryptoHandshakeMessage(); 39 CryptoHandshakeMessage& operator=(const CryptoHandshakeMessage& other); 88 // The array points into the CryptoHandshakeMessage and is valid only for as 89 // long as the CryptoHandshakeMessage exists and is not modified.
|
crypto_framer.h | 36 const CryptoHandshakeMessage& message) = 0; 50 static CryptoHandshakeMessage* ParseMessage(base::StringPiece in); 73 const CryptoHandshakeMessage& message); 104 CryptoHandshakeMessage message_;
|
quic_crypto_client_config.h | 41 const CryptoHandshakeMessage* GetServerConfig() const; 107 mutable scoped_ptr<CryptoHandshakeMessage> scfg_; 133 CryptoHandshakeMessage* out) const; 152 CryptoHandshakeMessage* out, 161 QuicErrorCode ProcessRejection(const CryptoHandshakeMessage& rej, 175 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello,
|
crypto_framer_test.cc | 42 const CryptoHandshakeMessage& message) OVERRIDE { 49 vector<CryptoHandshakeMessage> messages_; 53 CryptoHandshakeMessage message; 98 CryptoHandshakeMessage message; 136 CryptoHandshakeMessage message; 163 CryptoHandshakeMessage message; 175 CryptoHandshakeMessage message; 215 CryptoHandshakeMessage message; 285 const CryptoHandshakeMessage& message = visitor.messages_[0]; 332 const CryptoHandshakeMessage& message = visitor.messages_[0] [all...] |
quic_crypto_client_config.cc | 48 const CryptoHandshakeMessage* scfg = GetServerConfig(); 64 const CryptoHandshakeMessage* 83 scoped_ptr<CryptoHandshakeMessage> new_scfg_storage; 84 const CryptoHandshakeMessage* new_scfg; 242 CryptoHandshakeMessage* out) const { 303 CryptoHandshakeMessage* out, 310 const CryptoHandshakeMessage* scfg = cached->GetServerConfig(); 413 CryptoHandshakeMessage cetv; 486 const CryptoHandshakeMessage& rej, 548 const CryptoHandshakeMessage& server_hello [all...] |
quic_crypto_server_config.h | 54 virtual void RunImpl(const CryptoHandshakeMessage& client_hello, 113 // takes ownership of the CryptoHandshakeMessage. |now| is used in 116 CryptoHandshakeMessage* AddConfig(QuicServerConfigProtobuf* protobuf, 122 CryptoHandshakeMessage* AddDefaultConfig( 156 const CryptoHandshakeMessage& client_hello, 192 CryptoHandshakeMessage* out, 328 const CryptoHandshakeMessage& client_hello, 331 CryptoHandshakeMessage* out) const;
|
/external/chromium_org/net/quic/ |
quic_crypto_server_stream.h | 17 class CryptoHandshakeMessage; 34 const CryptoHandshakeMessage& message) OVERRIDE; 43 const CryptoHandshakeMessage& message, 45 CryptoHandshakeMessage* reply, 58 virtual void RunImpl(const CryptoHandshakeMessage& client_hello, 71 const CryptoHandshakeMessage& message,
|
quic_crypto_stream_test.cc | 32 const CryptoHandshakeMessage& message) OVERRIDE { 36 vector<CryptoHandshakeMessage>* messages() { 41 vector<CryptoHandshakeMessage> messages_; 67 CryptoHandshakeMessage message_; 84 const CryptoHandshakeMessage& message = (*stream_.messages())[0];
|
quic_config.h | 58 void ToHandshakeMessage(CryptoHandshakeMessage* out) const; 64 QuicErrorCode ProcessClientHello(const CryptoHandshakeMessage& client_hello, 71 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello, 78 QuicErrorCode ReadUint32(const CryptoHandshakeMessage& msg, 104 void ToHandshakeMessage(CryptoHandshakeMessage* out) const; 109 QuicErrorCode ProcessClientHello(const CryptoHandshakeMessage& client_hello, 115 QuicErrorCode ProcessServerHello(const CryptoHandshakeMessage& server_hello, 122 QuicErrorCode ReadVector(const CryptoHandshakeMessage& msg, 181 void ToHandshakeMessage(CryptoHandshakeMessage* out) const; 185 QuicErrorCode ProcessClientHello(const CryptoHandshakeMessage& client_hello [all...] |
quic_crypto_stream.h | 16 class CryptoHandshakeMessage; 38 const CryptoHandshakeMessage& message) OVERRIDE; 46 void SendHandshakeMessage(const CryptoHandshakeMessage& message);
|
quic_config_test.cc | 37 CryptoHandshakeMessage msg; 60 CryptoHandshakeMessage msg; 86 CryptoHandshakeMessage msg; 119 CryptoHandshakeMessage msg; 138 CryptoHandshakeMessage msg; 148 CryptoHandshakeMessage msg; 163 CryptoHandshakeMessage msg; 177 CryptoHandshakeMessage msg; 191 CryptoHandshakeMessage msg;
|
quic_config.cc | 42 CryptoHandshakeMessage* out) const { 51 const CryptoHandshakeMessage& msg, 75 const CryptoHandshakeMessage& client_hello, 92 const CryptoHandshakeMessage& server_hello, 136 void QuicNegotiableTag::ToHandshakeMessage(CryptoHandshakeMessage* out) const { 147 const CryptoHandshakeMessage& msg, 173 const CryptoHandshakeMessage& client_hello, 202 const CryptoHandshakeMessage& server_hello, 339 void QuicConfig::ToHandshakeMessage(CryptoHandshakeMessage* out) const { 350 const CryptoHandshakeMessage& client_hello [all...] |
quic_connection_logger.h | 14 class CryptoHandshakeMessage; 56 const CryptoHandshakeMessage& message); 58 const CryptoHandshakeMessage& message);
|
quic_crypto_stream.cc | 32 const CryptoHandshakeMessage& message) { 55 const CryptoHandshakeMessage& message) {
|
quic_crypto_server_stream.cc | 34 const CryptoHandshakeMessage& message) { 65 const CryptoHandshakeMessage& message, 72 CryptoHandshakeMessage reply; 158 const CryptoHandshakeMessage& message, 160 CryptoHandshakeMessage* reply, 182 const CryptoHandshakeMessage& client_hello,
|
quic_crypto_client_stream.h | 36 const CryptoHandshakeMessage& message) OVERRIDE; 87 void DoHandshakeLoop(const CryptoHandshakeMessage* in);
|
/external/chromium_org/net/quic/test_tools/ |
crypto_test_utils.h | 89 static std::string GetValueForTag(const CryptoHandshakeMessage& message, 121 static CryptoHandshakeMessage Message(const char* message_tag, ...); 125 // Message() and BuildMessage() to return a CryptoHandshakeMessage* pointer 127 static CryptoHandshakeMessage BuildMessage(const char* message_tag,
|
mock_crypto_client_stream.cc | 23 const CryptoHandshakeMessage& message) { 76 CryptoHandshakeMessage msg;
|
crypto_test_utils.cc | 45 const CryptoHandshakeMessage& message) OVERRIDE { 53 const vector<CryptoHandshakeMessage>& messages() const { 59 vector<CryptoHandshakeMessage> messages_; 100 for (vector<CryptoHandshakeMessage>::const_iterator 206 scoped_ptr<CryptoHandshakeMessage> scfg( 255 string CryptoTestUtils::GetValueForTag(const CryptoHandshakeMessage& message, 447 CryptoHandshakeMessage CryptoTestUtils::Message(const char* message_tag, ...) { 451 CryptoHandshakeMessage message = BuildMessage(message_tag, ap); 457 CryptoHandshakeMessage CryptoTestUtils::BuildMessage(const char* message_tag, 459 CryptoHandshakeMessage msg [all...] |
mock_crypto_client_stream.h | 45 const CryptoHandshakeMessage& message) OVERRIDE;
|
simple_quic_framer.h | 16 class CryptoHandshakeMessage;
|