Searched refs:QuicData (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/net/quic/crypto/
H A Dnull_decrypter_test.cc29 scoped_ptr<QuicData> decrypted(
48 scoped_ptr<QuicData> decrypted(
63 scoped_ptr<QuicData> decrypted(
H A Dchacha20_poly1305_decrypter_test.cc73 QuicData* DecryptWithNonce(ChaCha20Poly1305Decrypter* decrypter,
85 return new QuicData(plaintext.release(), plaintext_size, true);
114 scoped_ptr<QuicData> decrypted(DecryptWithNonce(
H A Dchacha20_poly1305_encrypter_test.cc44 QuicData* EncryptWithNonce(ChaCha20Poly1305Encrypter* encrypter,
56 return new QuicData(ciphertext.release(), ciphertext_size, true);
80 scoped_ptr<QuicData> encrypted(EncryptWithNonce(
H A Dcrypto_framer.h21 class QuicData;
68 // Returns a new QuicData owned by the caller that contains a serialized
70 static QuicData* ConstructHandshakeMessage(
H A Dnull_encrypter.cc37 QuicData* NullEncrypter::EncryptPacket(
44 return new QuicData(reinterpret_cast<char*>(buffer), len, true);
H A Dnull_decrypter.h32 virtual QuicData* DecryptPacket(QuicPacketSequenceNumber sequence_number,
H A Dnull_encrypter_test.cc27 scoped_ptr<QuicData> encrypted(
H A Dquic_decrypter.h54 // Returns a newly created QuicData object containing the decrypted
60 virtual QuicData* DecryptPacket(QuicPacketSequenceNumber sequence_number,
H A Dquic_encrypter.h52 // Returns a newly created QuicData object containing the encrypted
56 virtual QuicData* EncryptPacket(QuicPacketSequenceNumber sequence_number,
H A Dcrypto_handshake_message.h33 const QuicData& GetSerialized() const;
130 mutable scoped_ptr<QuicData> serialized_;
H A Dnull_decrypter.cc47 QuicData* NullDecrypter::DecryptPacket(QuicPacketSequenceNumber /*seq_number*/,
51 // the shared-data QuicData constructor directly.
68 return new QuicData(plaintext.data(), plaintext.length());
H A Daes_128_gcm_12_decrypter_test.cc255 QuicData* DecryptWithNonce(Aes128Gcm12Decrypter* decrypter,
267 return new QuicData(plaintext.release(), plaintext_size, true);
316 scoped_ptr<QuicData> decrypted(DecryptWithNonce(
H A Daes_128_gcm_12_encrypter_test.cc211 QuicData* EncryptWithNonce(Aes128Gcm12Encrypter* encrypter,
223 return new QuicData(ciphertext.release(), ciphertext_size, true);
257 scoped_ptr<QuicData> encrypted(EncryptWithNonce(
H A Daead_base_decrypter_openssl.cc104 QuicData* AeadBaseDecrypter::DecryptPacket(
125 return new QuicData(plaintext.release(), plaintext_size, true);
H A Daead_base_encrypter_openssl.cc103 QuicData* AeadBaseEncrypter::EncryptPacket(
123 return new QuicData(ciphertext.release(), ciphertext_size, true);
H A Dnull_encrypter.h29 virtual QuicData* EncryptPacket(QuicPacketSequenceNumber sequence_number,
H A Dcrypto_framer_test.cc90 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));
H A Daead_base_decrypter_nss.cc118 QuicData* AeadBaseDecrypter::DecryptPacket(
139 return new QuicData(plaintext.release(), plaintext_size, true);
H A Daead_base_encrypter_nss.cc113 QuicData* AeadBaseEncrypter::EncryptPacket(
133 return new QuicData(ciphertext.release(), ciphertext_size, true);
H A Daead_base_decrypter.h50 virtual QuicData* DecryptPacket(QuicPacketSequenceNumber sequence_number,
/external/chromium_org/net/quic/
H A Dquic_crypto_stream.cc71 const QuicData& data = message.GetSerialized();
H A Dquic_protocol.cc531 QuicData::QuicData(const char* buffer, function in class:net::QuicData
538 QuicData::QuicData(char* buffer, function in class:net::QuicData
546 QuicData::~QuicData() {
567 : QuicData(buffer, length, owns_buffer),
577 : QuicData(buffer, length) {
583 : QuicData(buffer, length, owns_buffer) {
H A Dquic_crypto_stream_test.cc69 scoped_ptr<QuicData> message_data_;
H A Dquic_crypto_client_stream_test.cc56 scoped_ptr<QuicData> message_data_;
180 scoped_ptr<QuicData> data(
198 scoped_ptr<QuicData> data(
H A Dquic_protocol.h911 class NET_EXPORT_PRIVATE QuicData { class in namespace:net
913 QuicData(const char* buffer, size_t length);
914 QuicData(char* buffer, size_t length, bool owns_buffer);
915 virtual ~QuicData();
929 DISALLOW_COPY_AND_ASSIGN(QuicData);
932 class NET_EXPORT_PRIVATE QuicPacket : public QuicData {
983 class NET_EXPORT_PRIVATE QuicEncryptedPacket : public QuicData {
992 // member (in the base class QuicData) causes this object to have padding

Completed in 213 milliseconds

12