Home
last modified time | relevance | path

Searched refs:QuicCryptoServerStream (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/net/quic/
Dquic_crypto_server_stream.cc28 QuicCryptoServerStream::QuicCryptoServerStream( in QuicCryptoServerStream() function in net::QuicCryptoServerStream
38 QuicCryptoServerStream::~QuicCryptoServerStream() { in ~QuicCryptoServerStream()
42 void QuicCryptoServerStream::CancelOutstandingCallbacks() { in CancelOutstandingCallbacks()
49 void QuicCryptoServerStream::OnHandshakeMessage( in OnHandshakeMessage()
81 void QuicCryptoServerStream::FinishProcessingHandshakeMessage( in FinishProcessingHandshakeMessage()
159 void QuicCryptoServerStream::SendServerConfigUpdate( in SendServerConfigUpdate()
186 void QuicCryptoServerStream::OnServerHelloAcked() { in OnServerHelloAcked()
190 bool QuicCryptoServerStream::GetBase64SHA256ClientChannelID( in GetBase64SHA256ClientChannelID()
220 QuicErrorCode QuicCryptoServerStream::ProcessClientHello( in ProcessClientHello()
236 void QuicCryptoServerStream::OverrideQuicConfigDefaults(QuicConfig* config) { in OverrideQuicConfigDefaults()
[all …]
Dquic_crypto_server_stream.h20 class QuicCryptoServerStream; variable
32 explicit ServerHelloNotifier(QuicCryptoServerStream* stream) in ServerHelloNotifier()
46 QuicCryptoServerStream* server_stream_;
51 class NET_EXPORT_PRIVATE QuicCryptoServerStream : public QuicCryptoStream {
53 QuicCryptoServerStream(const QuicCryptoServerConfig& crypto_config,
55 virtual ~QuicCryptoServerStream();
100 explicit ValidateCallback(QuicCryptoServerStream* parent);
109 QuicCryptoServerStream* parent_;
136 DISALLOW_COPY_AND_ASSIGN(QuicCryptoServerStream);
Dquic_server_session.h63 const QuicCryptoServerStream* crypto_stream() const { in crypto_stream()
78 virtual QuicCryptoServerStream* GetCryptoStream() OVERRIDE;
85 virtual QuicCryptoServerStream* CreateQuicCryptoServerStream(
91 scoped_ptr<QuicCryptoServerStream> crypto_stream_;
Dquic_server_session.cc33 QuicCryptoServerStream* QuicServerSession::CreateQuicCryptoServerStream( in CreateQuicCryptoServerStream()
35 return new QuicCryptoServerStream(crypto_config, this); in CreateQuicCryptoServerStream()
169 QuicCryptoServerStream* QuicServerSession::GetCryptoStream() { in GetCryptoStream()
Dquic_crypto_server_stream_test.cc112 QuicCryptoServerStream stream_;
162 scoped_ptr<QuicCryptoServerStream> server( in TEST_P()
163 new QuicCryptoServerStream(crypto_config_, server_session.get())); in TEST_P()
189 server.reset(new QuicCryptoServerStream(crypto_config_, in TEST_P()
/external/chromium_org/net/tools/quic/
Dquic_server_session.h64 const QuicCryptoServerStream* crypto_stream() const { in crypto_stream()
79 virtual QuicCryptoServerStream* GetCryptoStream() OVERRIDE;
86 virtual QuicCryptoServerStream* CreateQuicCryptoServerStream(
92 scoped_ptr<QuicCryptoServerStream> crypto_stream_;
Dquic_server_session.cc33 QuicCryptoServerStream* QuicServerSession::CreateQuicCryptoServerStream( in CreateQuicCryptoServerStream()
35 return new QuicCryptoServerStream(crypto_config, this); in CreateQuicCryptoServerStream()
169 QuicCryptoServerStream* QuicServerSession::GetCryptoStream() { in GetCryptoStream()
Dquic_server_session_test.cc57 QuicCryptoServerStream* crypto_stream) { in SetCryptoStream()
283 class MockQuicCryptoServerStream : public QuicCryptoServerStream {
287 : QuicCryptoServerStream(crypto_config, session) {} in MockQuicCryptoServerStream()
/external/chromium_org/net/quic/test_tools/
Dcrypto_test_utils.h31 class QuicCryptoServerStream; variable
79 QuicCryptoServerStream* server,
181 QuicCryptoServerStream* server);
Dcrypto_test_utils.cc200 QuicCryptoServerStream server(crypto_config, &server_session); in HandshakeWithFakeServer()
216 QuicCryptoServerStream* server, in HandshakeWithFakeClient()
417 QuicCryptoServerStream* server) { in CompareClientAndServerKeys()