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

1 2

  /external/chromium_org/net/quic/crypto/
null_decrypter_test.cc 29 scoped_ptr<QuicData> decrypted(
48 scoped_ptr<QuicData> decrypted(
63 scoped_ptr<QuicData> decrypted(
quic_decrypter.h 55 // Returns a newly created QuicData object containing the decrypted
61 virtual QuicData* DecryptPacket(QuicPacketSequenceNumber sequence_number,
crypto_framer.h 23 class QuicData;
70 // Returns a new QuicData owned by the caller that contains a serialized
72 static QuicData* ConstructHandshakeMessage(
null_encrypter.cc 37 QuicData* NullEncrypter::EncryptPacket(
44 return new QuicData(reinterpret_cast<char*>(buffer), len, true);
aes_128_gcm_12_decrypter.h 50 virtual QuicData* DecryptPacket(QuicPacketSequenceNumber sequence_number,
aes_128_gcm_12_encrypter.h 46 virtual QuicData* EncryptPacket(QuicPacketSequenceNumber sequence_number,
null_decrypter.h 32 virtual QuicData* DecryptPacket(QuicPacketSequenceNumber sequence_number,
null_encrypter.h 29 virtual QuicData* EncryptPacket(QuicPacketSequenceNumber sequence_number,
null_encrypter_test.cc 27 scoped_ptr<QuicData> encrypted(
quic_encrypter.h 53 // Returns a newly created QuicData object containing the encrypted
57 virtual QuicData* EncryptPacket(QuicPacketSequenceNumber sequence_number,
null_decrypter.cc 47 QuicData* NullDecrypter::DecryptPacket(QuicPacketSequenceNumber /*seq_number*/,
51 // the shared-data QuicData constructor directly.
68 return new QuicData(plaintext.data(), plaintext.length());
aes_128_gcm_12_decrypter_test.cc 255 QuicData* DecryptWithNonce(Aes128Gcm12Decrypter* decrypter,
267 return new QuicData(plaintext.release(), plaintext_size, true);
320 scoped_ptr<QuicData> decrypted(DecryptWithNonce(
aes_128_gcm_12_encrypter_test.cc 211 QuicData* EncryptWithNonce(Aes128Gcm12Encrypter* encrypter,
223 return new QuicData(ciphertext.release(), ciphertext_size, true);
258 scoped_ptr<QuicData> encrypted(EncryptWithNonce(
aes_128_gcm_12_decrypter_openssl.cc 115 QuicData* Aes128Gcm12Decrypter::DecryptPacket(
135 return new QuicData(plaintext.release(), plaintext_size, true);
crypto_handshake.h 46 const QuicData& GetSerialized() const;
143 mutable scoped_ptr<QuicData> serialized_;
crypto_framer_test.cc 90 scoped_ptr<QuicData> data(framer.ConstructHandshakeMessage(message));
127 scoped_ptr<QuicData> data(framer.ConstructHandshakeMessage(message));
154 scoped_ptr<QuicData> data(framer.ConstructHandshakeMessage(message));
170 scoped_ptr<QuicData> data(framer.ConstructHandshakeMessage(message));
206 scoped_ptr<QuicData> data(framer.ConstructHandshakeMessage(message));
244 scoped_ptr<QuicData> data(framer.ConstructHandshakeMessage(message));
aes_128_gcm_12_encrypter_openssl.cc 131 QuicData* Aes128Gcm12Encrypter::EncryptPacket(
150 return new QuicData(ciphertext.release(), ciphertext_size, true);
crypto_framer.cc 87 QuicData* CryptoFramer::ConstructHandshakeMessage(
187 return new QuicData(writer.take(), len, true);
quic_crypto_client_config.cc 417 const QuicData& client_hello_serialized = out->GetSerialized();
444 const QuicData& cetv_plaintext = cetv.GetSerialized();
445 scoped_ptr<QuicData> cetv_ciphertext(crypters.encrypter->EncryptPacket(
463 const QuicData& client_hello_serialized = out->GetSerialized();
aes_128_gcm_12_decrypter_nss.cc 351 QuicData* Aes128Gcm12Decrypter::DecryptPacket(
371 return new QuicData(plaintext.release(), plaintext_size, true);
aes_128_gcm_12_encrypter_nss.cc 338 QuicData* Aes128Gcm12Encrypter::EncryptPacket(
357 return new QuicData(ciphertext.release(), ciphertext_size, true);
  /external/chromium_org/net/quic/
quic_crypto_stream.cc 57 const QuicData& data = message.GetSerialized();
quic_protocol.h 764 class NET_EXPORT_PRIVATE QuicData {
766 QuicData(const char* buffer, size_t length)
771 QuicData(char* buffer, size_t length, bool owns_buffer)
776 virtual ~QuicData();
790 DISALLOW_COPY_AND_ASSIGN(QuicData);
793 class NET_EXPORT_PRIVATE QuicPacket : public QuicData {
834 : QuicData(buffer, length, owns_buffer),
850 class NET_EXPORT_PRIVATE QuicEncryptedPacket : public QuicData {
853 : QuicData(buffer, length) {}
856 : QuicData(buffer, length, owns_buffer) {
    [all...]
quic_crypto_stream_test.cc 68 scoped_ptr<QuicData> message_data_;
quic_crypto_client_stream_test.cc 49 scoped_ptr<QuicData> message_data_;

Completed in 732 milliseconds

1 2