GetMaxPlaintextSize   54 net/quic/crypto/aead_base_encrypter.h   virtual size_t GetMaxPlaintextSize(size_t ciphertext_size) const OVERRIDE;
GetMaxPlaintextSize  280 net/quic/crypto/aes_128_gcm_12_encrypter_test.cc TEST(Aes128Gcm12EncrypterTest, GetMaxPlaintextSize) {
GetMaxPlaintextSize  282 net/quic/crypto/aes_128_gcm_12_encrypter_test.cc   EXPECT_EQ(1000u, encrypter.GetMaxPlaintextSize(1012));
GetMaxPlaintextSize  283 net/quic/crypto/aes_128_gcm_12_encrypter_test.cc   EXPECT_EQ(100u, encrypter.GetMaxPlaintextSize(112));
GetMaxPlaintextSize  284 net/quic/crypto/aes_128_gcm_12_encrypter_test.cc   EXPECT_EQ(10u, encrypter.GetMaxPlaintextSize(22));
GetMaxPlaintextSize   93 net/quic/crypto/chacha20_poly1305_encrypter_test.cc TEST(ChaCha20Poly1305EncrypterTest, GetMaxPlaintextSize) {
GetMaxPlaintextSize   95 net/quic/crypto/chacha20_poly1305_encrypter_test.cc   EXPECT_EQ(1000u, encrypter.GetMaxPlaintextSize(1012));
GetMaxPlaintextSize   96 net/quic/crypto/chacha20_poly1305_encrypter_test.cc   EXPECT_EQ(100u, encrypter.GetMaxPlaintextSize(112));
GetMaxPlaintextSize   97 net/quic/crypto/chacha20_poly1305_encrypter_test.cc   EXPECT_EQ(10u, encrypter.GetMaxPlaintextSize(22));
GetMaxPlaintextSize   34 net/quic/crypto/null_encrypter.h   virtual size_t GetMaxPlaintextSize(size_t ciphertext_size) const OVERRIDE;
GetMaxPlaintextSize   36 net/quic/crypto/null_encrypter_test.cc TEST_F(NullEncrypterTest, GetMaxPlaintextSize) {
GetMaxPlaintextSize   38 net/quic/crypto/null_encrypter_test.cc   EXPECT_EQ(1000u, encrypter.GetMaxPlaintextSize(1012));
GetMaxPlaintextSize   39 net/quic/crypto/null_encrypter_test.cc   EXPECT_EQ(100u, encrypter.GetMaxPlaintextSize(112));
GetMaxPlaintextSize   40 net/quic/crypto/null_encrypter_test.cc   EXPECT_EQ(10u, encrypter.GetMaxPlaintextSize(22));
GetMaxPlaintextSize   73 net/quic/crypto/quic_encrypter.h   virtual size_t GetMaxPlaintextSize(size_t ciphertext_size) const = 0;
GetMaxPlaintextSize  335 net/quic/quic_framer.cc   const size_t max_plaintext_size = GetMaxPlaintextSize(kMaxPacketSize);
GetMaxPlaintextSize 1794 net/quic/quic_framer.cc       size_t size = encrypter_[i]->GetMaxPlaintextSize(ciphertext_size);
GetMaxPlaintextSize  357 net/quic/quic_framer.h   size_t GetMaxPlaintextSize(size_t ciphertext_size);
GetMaxPlaintextSize  275 net/quic/quic_packet_creator.cc       framer_->GetMaxPlaintextSize(options_.max_packet_length);
GetMaxPlaintextSize  311 net/quic/quic_packet_creator.cc       framer_->GetMaxPlaintextSize(options_.max_packet_length);
GetMaxPlaintextSize   79 net/quic/quic_packet_creator_test.cc         client_framer_.GetMaxPlaintextSize(
GetMaxPlaintextSize  440 net/quic/quic_packet_creator_test.cc       EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize)
GetMaxPlaintextSize  443 net/quic/quic_packet_creator_test.cc       EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize),
GetMaxPlaintextSize  470 net/quic/quic_packet_creator_test.cc       EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize)
GetMaxPlaintextSize  473 net/quic/quic_packet_creator_test.cc       EXPECT_EQ(client_framer_.GetMaxPlaintextSize(kDefaultMaxPacketSize),
GetMaxPlaintextSize  613 net/quic/quic_packet_creator_test.cc       client_framer_.GetMaxPlaintextSize(creator_.options()->max_packet_length);