/external/chromium_org/net/quic/ |
quic_sent_packet_manager_test.cc | 157 QuicPacketSequenceNumber retransmittable[] = { 1 }; local 158 VerifyRetransmittablePackets(retransmittable, arraysize(retransmittable)); 170 QuicPacketSequenceNumber retransmittable[] = { 2 }; local 171 VerifyRetransmittablePackets(retransmittable, arraysize(retransmittable)); 223 // 2 remains unacked, but no packets have retransmittable data. 229 // the sent packet manager is not notified, since there is no retransmittable 248 // 3 remains unacked, but no packets have retransmittable data. 254 // the sent packet manager is not notified, since there is no retransmittable 280 QuicPacketSequenceNumber retransmittable[] = { 4 }; local 298 QuicPacketSequenceNumber retransmittable[] = { 2 }; local 315 QuicPacketSequenceNumber retransmittable[] = { 2, 4 }; local 333 QuicPacketSequenceNumber retransmittable[] = { 2, 4, 6 }; local 354 QuicPacketSequenceNumber retransmittable[] = { 4, 6, 8, 9 }; local 378 QuicPacketSequenceNumber retransmittable[] = { 6, 8, 9, 11, 12 }; local 403 QuicPacketSequenceNumber retransmittable[] = { 8, 9, 11, 12, 14, 15, 16 }; local [all...] |
quic_sent_packet_manager.h | 38 // retransmittable data associated with each packet. If a packet is 81 // retransmittable data, it will be added to the unacked packet map. 106 // Returns true if the unacked packet |sequence_number| has retransmittable 120 // Returns the number of unacked packets which have retransmittable frames. 172 HasRetransmittableData retransmittable, 250 // retransmissions. Returns false if there are no retransmittable frames for 266 // Newly serialized retransmittable and fec packets are added to this map, 269 // packet. The old packet's retransmittable frames entry will be NULL, while 272 // be removed from the map and the new entry's retransmittable frames will be
|
quic_ack_notifier_manager.h | 52 // contains retransmittable frames (which may have associated AckNotifiers). 53 // If any of the retransmittable frames included in |serialized_packet| have
|
quic_packet_generator.cc | 142 HasRetransmittableData retransmittable = local 145 if (retransmittable == HAS_RETRANSMITTABLE_DATA) { 146 DCHECK(!queued_control_frames_.empty()); // These are retransmittable. 148 return delegate_->ShouldGeneratePacket(NOT_RETRANSMISSION, retransmittable,
|
quic_packet_generator.h | 68 HasRetransmittableData retransmittable, 136 // retransmittable) would still allow the resulting packet to be sent now. 158 // If we put a non-retransmittable frame (namley ack or feedback frame) in 160 // serialize it). Retransmittable frames are referenced elsewhere so that they
|
quic_connection.h | 297 HasRetransmittableData retransmittable, 366 // Retransmits all unacked packets with retransmittable frames if 408 HasRetransmittableData retransmittable, 418 // |transmission_type| and |retransmittable| are supplied to the congestion 437 HasRetransmittableData retransmittable, 484 HasRetransmittableData retransmittable, 491 retransmittable(retransmittable), 500 HasRetransmittableData retransmittable; member in struct:net::QuicConnection::QueuedPacket 539 HasRetransmittableData retransmittable, 552 HasRetransmittableData retransmittable; member in struct:net::QuicConnection::PendingWrite [all...] |
quic_connection.cc | 1281 HasRetransmittableData retransmittable = pending_write_->retransmittable; local 1352 HasRetransmittableData retransmittable = local [all...] |
quic_ack_notifier_manager.cc | 81 // AckNotifiers can only be attached to retransmittable frames.
|
quic_packet_creator_test.cc | 608 RetransmittableFrames* retransmittable = serialized.retransmittable_frames; local 609 ASSERT_EQ(1u, retransmittable->frames().size()); 610 EXPECT_EQ(STREAM_FRAME, retransmittable->frames()[0].type); 611 ASSERT_TRUE(retransmittable->frames()[0].stream_frame);
|
quic_sent_packet_manager.cc | 410 // Delete the retransmittable frames. 502 // Abandon retransmittable packet and old non-retransmittable packets. 519 // Retransmit any packet with retransmittable frames. 667 HasRetransmittableData retransmittable, 669 return send_algorithm_->TimeUntilSend(now, transmission_type, retransmittable,
|
quic_packet_creator.h | 192 // Allows a frame to be added without creating retransmittable frames.
|
quic_packet_generator_test.cc | 38 HasRetransmittableData retransmittable,
|
quic_connection_test.cc | 412 HasRetransmittableData retransmittable) { 414 retransmittable == HAS_RETRANSMITTABLE_DATA ? [all...] |
/external/chromium_org/net/quic/congestion_control/ |
tcp_cubic_sender_test.cc | 395 // Send a packet with no retransmittable data, and ensure that the congestion 402 // Send a data packet with retransmittable data, and ensure that the
|