Home
last modified time | relevance | path

Searched refs:CryptoHandshakeMessage (Results 1 – 25 of 38) sorted by relevance

12

/external/chromium_org/net/quic/crypto/
Dcrypto_handshake.cc31 CryptoHandshakeMessage::CryptoHandshakeMessage() in CryptoHandshakeMessage() function in net::CryptoHandshakeMessage
35 CryptoHandshakeMessage::CryptoHandshakeMessage( in CryptoHandshakeMessage() function in net::CryptoHandshakeMessage
36 const CryptoHandshakeMessage& other) in CryptoHandshakeMessage()
44 CryptoHandshakeMessage::~CryptoHandshakeMessage() {} in ~CryptoHandshakeMessage()
46 CryptoHandshakeMessage& CryptoHandshakeMessage::operator=( in operator =()
47 const CryptoHandshakeMessage& other) { in operator =()
57 void CryptoHandshakeMessage::Clear() { in Clear()
64 const QuicData& CryptoHandshakeMessage::GetSerialized() const { in GetSerialized()
71 void CryptoHandshakeMessage::MarkDirty() { in MarkDirty()
75 void CryptoHandshakeMessage::SetTaglist(QuicTag tag, ...) { in SetTaglist()
[all …]
Dcrypto_server_test.cc35 scoped_ptr<CryptoHandshakeMessage> msg( in SetUp()
51 CryptoHandshakeMessage client_hello = CryptoTestUtils::Message( in SetUp()
92 virtual void RunImpl(const CryptoHandshakeMessage& client_hello, in RunImpl()
107 void ShouldSucceed(const CryptoHandshakeMessage& message) { in ShouldSucceed()
113 void ShouldSucceed(const CryptoHandshakeMessage& message, in ShouldSucceed()
121 const CryptoHandshakeMessage& message) { in ShouldFailMentioning()
128 const CryptoHandshakeMessage& message, in ShouldFailMentioning()
135 void ProcessValidationResult(const CryptoHandshakeMessage& message, in ProcessValidationResult()
158 CryptoHandshakeMessage InchoateClientHello(const char* message_tag, ...) { in InchoateClientHello()
162 CryptoHandshakeMessage message = in InchoateClientHello()
[all …]
Dcrypto_framer_test.cc42 const CryptoHandshakeMessage& message) OVERRIDE { in OnHandshakeMessage()
49 vector<CryptoHandshakeMessage> messages_;
53 CryptoHandshakeMessage message; in TEST()
98 CryptoHandshakeMessage message; in TEST()
136 CryptoHandshakeMessage message; in TEST()
163 CryptoHandshakeMessage message; in TEST()
175 CryptoHandshakeMessage message; in TEST()
215 CryptoHandshakeMessage message; in TEST()
285 const CryptoHandshakeMessage& message = visitor.messages_[0]; in TEST()
332 const CryptoHandshakeMessage& message = visitor.messages_[0]; in TEST()
[all …]
Dcrypto_handshake.h33 class NET_EXPORT_PRIVATE CryptoHandshakeMessage {
35 CryptoHandshakeMessage();
36 CryptoHandshakeMessage(const CryptoHandshakeMessage& other);
37 ~CryptoHandshakeMessage();
39 CryptoHandshakeMessage& operator=(const CryptoHandshakeMessage& other);
Dquic_crypto_client_config.h41 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,
Dquic_crypto_server_config.h54 virtual void RunImpl(const CryptoHandshakeMessage& client_hello,
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;
Dcrypto_framer.h36 const CryptoHandshakeMessage& message) = 0;
50 static CryptoHandshakeMessage* ParseMessage(base::StringPiece in);
73 const CryptoHandshakeMessage& message);
104 CryptoHandshakeMessage message_;
Dcrypto_framer.cc27 explicit OneShotVisitor(CryptoHandshakeMessage* out) in OneShotVisitor()
35 const CryptoHandshakeMessage& message) OVERRIDE { in OnHandshakeMessage()
42 CryptoHandshakeMessage* const out_;
58 CryptoHandshakeMessage* CryptoFramer::ParseMessage(StringPiece in) { in ParseMessage()
59 scoped_ptr<CryptoHandshakeMessage> msg(new CryptoHandshakeMessage); in ParseMessage()
88 const CryptoHandshakeMessage& message) { in ConstructHandshakeMessage()
Dquic_crypto_client_config.cc48 const CryptoHandshakeMessage* scfg = GetServerConfig(); in IsComplete()
64 const CryptoHandshakeMessage*
83 scoped_ptr<CryptoHandshakeMessage> new_scfg_storage; in SetServerConfig()
84 const CryptoHandshakeMessage* new_scfg; in SetServerConfig()
242 CryptoHandshakeMessage* out) const { in FillInchoateClientHello()
303 CryptoHandshakeMessage* out, in FillClientHello()
310 const CryptoHandshakeMessage* scfg = cached->GetServerConfig(); in FillClientHello()
413 CryptoHandshakeMessage cetv; in FillClientHello()
486 const CryptoHandshakeMessage& rej, in ProcessRejection()
548 const CryptoHandshakeMessage& server_hello, in ProcessServerHello()
Dquic_crypto_client_config_test.cc19 CryptoHandshakeMessage msg; in TEST()
44 CryptoHandshakeMessage msg; in TEST()
Dquic_crypto_server_config.cc70 Result(const CryptoHandshakeMessage& in_client_hello, in Result()
78 CryptoHandshakeMessage client_hello;
207 CryptoHandshakeMessage msg; in DefaultConfig()
305 CryptoHandshakeMessage* QuicCryptoServerConfig::AddConfig( in AddConfig()
308 scoped_ptr<CryptoHandshakeMessage> msg( in AddConfig()
339 CryptoHandshakeMessage* QuicCryptoServerConfig::AddDefaultConfig( in AddDefaultConfig()
422 const CryptoHandshakeMessage& client_hello, in ValidateClientHello()
464 CryptoHandshakeMessage* out, in ProcessClientHello()
468 const CryptoHandshakeMessage& client_hello = in ProcessClientHello()
598 CryptoHandshakeMessage client_hello_copy(client_hello); in ProcessClientHello()
[all …]
/external/chromium_org/net/quic/
Dquic_config.h58 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 …]
Dquic_crypto_server_stream.h17 class CryptoHandshakeMessage; variable
34 const CryptoHandshakeMessage& message) OVERRIDE;
43 const CryptoHandshakeMessage& message,
45 CryptoHandshakeMessage* reply,
58 virtual void RunImpl(const CryptoHandshakeMessage& client_hello,
71 const CryptoHandshakeMessage& message,
Dquic_crypto_stream_test.cc32 const CryptoHandshakeMessage& message) OVERRIDE { in OnHandshakeMessage()
36 vector<CryptoHandshakeMessage>* messages() { in messages()
41 vector<CryptoHandshakeMessage> messages_;
67 CryptoHandshakeMessage message_;
84 const CryptoHandshakeMessage& message = (*stream_.messages())[0]; in TEST_F()
Dquic_config_test.cc37 CryptoHandshakeMessage msg; in TEST_F()
60 CryptoHandshakeMessage msg; in TEST_F()
86 CryptoHandshakeMessage msg; in TEST_F()
119 CryptoHandshakeMessage msg; in TEST_F()
138 CryptoHandshakeMessage msg; in TEST_F()
148 CryptoHandshakeMessage msg; in TEST_F()
163 CryptoHandshakeMessage msg; in TEST_F()
177 CryptoHandshakeMessage msg; in TEST_F()
191 CryptoHandshakeMessage msg; in TEST_F()
Dquic_config.cc42 CryptoHandshakeMessage* out) const { in ToHandshakeMessage()
51 const CryptoHandshakeMessage& msg, in ReadUint32()
75 const CryptoHandshakeMessage& client_hello, in ProcessClientHello()
92 const CryptoHandshakeMessage& server_hello, in ProcessServerHello()
136 void QuicNegotiableTag::ToHandshakeMessage(CryptoHandshakeMessage* out) const { in ToHandshakeMessage()
147 const CryptoHandshakeMessage& msg, in ReadVector()
173 const CryptoHandshakeMessage& client_hello, in ProcessClientHello()
202 const CryptoHandshakeMessage& server_hello, in ProcessServerHello()
339 void QuicConfig::ToHandshakeMessage(CryptoHandshakeMessage* out) const { in ToHandshakeMessage()
350 const CryptoHandshakeMessage& client_hello, in ProcessClientHello()
[all …]
Dquic_crypto_server_stream.cc34 const CryptoHandshakeMessage& message) { in OnHandshakeMessage()
65 const CryptoHandshakeMessage& message, in FinishProcessingHandshakeMessage()
72 CryptoHandshakeMessage reply; in FinishProcessingHandshakeMessage()
158 const CryptoHandshakeMessage& message, in ProcessClientHello()
160 CryptoHandshakeMessage* reply, in ProcessClientHello()
182 const CryptoHandshakeMessage& client_hello, in RunImpl()
Dquic_crypto_stream.h16 class CryptoHandshakeMessage; variable
38 const CryptoHandshakeMessage& message) OVERRIDE;
46 void SendHandshakeMessage(const CryptoHandshakeMessage& message);
Dquic_connection_logger.h14 class CryptoHandshakeMessage; variable
56 const CryptoHandshakeMessage& message);
58 const CryptoHandshakeMessage& message);
Dquic_crypto_stream.cc32 const CryptoHandshakeMessage& message) { in OnHandshakeMessage()
55 const CryptoHandshakeMessage& message) { in SendHandshakeMessage()
Dquic_crypto_client_stream.h36 const CryptoHandshakeMessage& message) OVERRIDE;
87 void DoHandshakeLoop(const CryptoHandshakeMessage* in);
Dquic_crypto_client_stream.cc87 const CryptoHandshakeMessage& message) { in OnHandshakeMessage()
147 const CryptoHandshakeMessage* in) { in DoHandshakeLoop()
148 CryptoHandshakeMessage out; in DoHandshakeLoop()
/external/chromium_org/net/quic/test_tools/
Dcrypto_test_utils.cc45 const CryptoHandshakeMessage& message) OVERRIDE { in OnHandshakeMessage()
53 const vector<CryptoHandshakeMessage>& messages() const { in messages()
59 vector<CryptoHandshakeMessage> messages_;
100 for (vector<CryptoHandshakeMessage>::const_iterator in MovePackets()
206 scoped_ptr<CryptoHandshakeMessage> scfg( in SetupCryptoServerConfigForTest()
255 string CryptoTestUtils::GetValueForTag(const CryptoHandshakeMessage& message, in GetValueForTag()
447 CryptoHandshakeMessage CryptoTestUtils::Message(const char* message_tag, ...) { in Message()
451 CryptoHandshakeMessage message = BuildMessage(message_tag, ap); in Message()
457 CryptoHandshakeMessage CryptoTestUtils::BuildMessage(const char* message_tag, in BuildMessage()
459 CryptoHandshakeMessage msg; in BuildMessage()
[all …]
Dcrypto_test_utils.h89 static std::string GetValueForTag(const CryptoHandshakeMessage& message,
121 static CryptoHandshakeMessage Message(const char* message_tag, ...);
127 static CryptoHandshakeMessage BuildMessage(const char* message_tag,
Dmock_crypto_client_stream.cc23 const CryptoHandshakeMessage& message) { in OnHandshakeMessage()
76 CryptoHandshakeMessage msg; in SetConfigNegotiated()

12