HomeSort by relevance Sort by last modified time
    Searched refs:entropy_hash (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/net/quic/test_tools/
quic_received_packet_manager_peer.cc 17 QuicPacketEntropyHash entropy_hash) {
19 entropy_hash);
quic_received_packet_manager_peer.h 21 QuicPacketEntropyHash entropy_hash);
quic_connection_peer.cc 98 QuicPacketEntropyHash entropy_hash) {
100 largest_observed, missing_packets, entropy_hash);
quic_connection_peer.h 68 QuicPacketEntropyHash entropy_hash);
quic_test_utils.cc 246 QuicPacketEntropyHash entropy_hash,
383 header.entropy_hash = 0;
quic_test_utils.h 268 QuicPacketEntropyHash entropy_hash,
  /external/chromium_org/net/quic/
quic_sent_entropy_manager.cc 23 QuicPacketEntropyHash entropy_hash) {
26 packets_entropy_hash_ ^= entropy_hash;
29 make_pair(entropy_hash, packets_entropy_hash_)));
33 << " entropy hash: " << static_cast<int>(entropy_hash);
51 QuicPacketEntropyHash entropy_hash) const {
66 DLOG_IF(WARNING, entropy_hash != expected_entropy_hash)
67 << "Invalid entropy hash: " << static_cast<int>(entropy_hash)
69 return entropy_hash == expected_entropy_hash;
quic_sent_entropy_manager.h 26 // Record |entropy_hash| for sent packet corresponding to |sequence_number|.
28 QuicPacketEntropyHash entropy_hash);
33 // Returns true if |entropy_hash| matches the expected sent entropy hash
37 QuicPacketEntropyHash entropy_hash) const;
quic_received_packet_manager.cc 24 received_info_.entropy_hash = 0;
49 RecordPacketEntropyHash(sequence_number, header.entropy_hash);
60 received_info->entropy_hash = EntropyHash(received_info_.largest_observed);
75 QuicPacketEntropyHash entropy_hash) {
82 packets_entropy_.insert(make_pair(sequence_number, entropy_hash));
83 packets_entropy_hash_ ^= entropy_hash;
87 << " entropy hash: " << static_cast<int>(entropy_hash);
118 QuicPacketEntropyHash entropy_hash) {
127 packets_entropy_hash_ = entropy_hash;
179 incoming_ack.sent_info.entropy_hash);
    [all...]
quic_received_packet_manager_test.cc 25 QuicPacketEntropyHash entropy_hash) {
28 header.entropy_hash = entropy_hash;
82 QuicPacketEntropyHash entropy_hash = 0; local
85 entropy_hash ^= entropies[i].second;
87 EXPECT_EQ(entropy_hash, received_manager_.EntropyHash(6));
90 entropy_hash ^= 100;
92 entropy_hash ^= entropies[i].second;
96 EXPECT_EQ(entropy_hash, received_manager_.EntropyHash(6));
100 EXPECT_EQ(entropy_hash, received_manager_.EntropyHash(6))
    [all...]
quic_received_packet_manager.h 73 QuicPacketEntropyHash entropy_hash);
76 // now that the sender sent us the |entropy_hash| for packets up to,
79 QuicPacketEntropyHash entropy_hash);
quic_sent_entropy_manager_test.cc 60 QuicPacketEntropyHash entropy_hash = 0; local
63 entropy_hash ^= entropies[i];
68 entropy_hash));
quic_protocol.cc 89 entropy_hash(0),
99 entropy_hash(0),
197 << ", entropy hash: " << static_cast<int>(header.entropy_hash)
235 received_info.entropy_hash = 0;
237 sent_info.entropy_hash = 0;
241 os << "entropy_hash: " << static_cast<int>(sent_info.entropy_hash)
247 os << "entropy_hash: " << static_cast<int>(received_info.entropy_hash)
quic_protocol.h 414 QuicPacketEntropyHash entropy_hash; member in struct:net::QuicPacketHeader
476 QuicPacketEntropyHash entropy_hash; member in struct:net::ReceivedPacketInfo
519 QuicPacketEntropyHash entropy_hash; member in struct:net::SentPacketInfo
819 QuicPacketEntropyHash entropy_hash,
823 entropy_hash(entropy_hash),
828 QuicPacketEntropyHash entropy_hash; member in struct:net::SerializedPacket
quic_connection_test.cc 505 return serialized_packet.entropy_hash;
818 frame.received_info.entropy_hash =
827 frame.received_info.entropy_hash =
864 frame.received_info.entropy_hash = QuicConnectionPeer::GetSentEntropyHash(
918 frame.received_info.entropy_hash = QuicConnectionPeer::GetSentEntropyHash(
2121 QuicPacketEntropyHash entropy_hash = 0; local
    [all...]
quic_connection_helper_test.cc 153 ack.sent_info.entropy_hash = 0;
154 ack.received_info.entropy_hash = 0;
178 ack.sent_info.entropy_hash = 0;
179 ack.received_info.entropy_hash = 0;
quic_connection.cc 537 incoming_ack.received_info.entropy_hash)) {
    [all...]
quic_framer_test.cc 591 EXPECT_EQ(0, visitor_.header_->entropy_hash);
644 EXPECT_EQ(0, visitor_.header_->entropy_hash);
699 EXPECT_EQ(0, visitor_.header_->entropy_hash);
752 EXPECT_EQ(0, visitor_.header_->entropy_hash);
810 EXPECT_EQ(0, visitor_.header_->entropy_hash);
865 EXPECT_EQ(0, visitor_.header_->entropy_hash);
    [all...]
quic_framer.cc 540 header->entropy_hash = GetPacketEntropyHash(*header);
855 header->entropy_hash = GetPacketEntropyHash(*header);
    [all...]
quic_http_stream_test.cc 236 ack.sent_info.entropy_hash = 0;
237 ack.received_info.entropy_hash = 0;
quic_connection.h 390 // entropy map corresponding to |sequence_number| using |entropy_hash|.
395 QuicPacketEntropyHash entropy_hash,

Completed in 62 milliseconds