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

  /external/chromium_org/net/quic/
quic_received_packet_manager.cc 210 incoming_ack.sent_info.least_unacked);
211 if (incoming_ack.sent_info.least_unacked > peer_least_packet_awaiting_ack_) {
213 DontWaitForPacketsBefore(incoming_ack.sent_info.least_unacked);
214 if (missed_packets || incoming_ack.sent_info.least_unacked >
219 RecalculateEntropyHash(incoming_ack.sent_info.least_unacked,
220 incoming_ack.sent_info.entropy_hash);
222 peer_least_packet_awaiting_ack_ = incoming_ack.sent_info.least_unacked;
quic_protocol.cc 244 sent_info.least_unacked = least_unacked;
245 sent_info.entropy_hash = 0;
248 ostream& operator<<(ostream& os, const SentPacketInfo& sent_info) {
249 os << "entropy_hash: " << static_cast<int>(sent_info.entropy_hash)
250 << " least_unacked: " << sent_info.least_unacked;
308 os << "sent info { " << ack_frame.sent_info << " } "
quic_connection_logger.cc 90 base::DictionaryValue* sent_info = new base::DictionaryValue(); local
91 dict->Set("sent_info", sent_info);
92 sent_info->SetString("least_unacked",
93 base::Uint64ToString(frame->sent_info.least_unacked));
quic_connection.cc 495 CloseFecGroupsBefore(incoming_ack.sent_info.least_unacked + 1);
549 if (incoming_ack.sent_info.least_unacked <
552 << incoming_ack.sent_info.least_unacked << " vs "
558 if (incoming_ack.sent_info.least_unacked >
561 << incoming_ack.sent_info.least_unacked
722 UpdateSentPacketInfo(&(outgoing_ack->sent_info));
    [all...]
quic_connection_test.cc     [all...]
quic_framer.cc     [all...]
quic_framer.h 404 SentPacketInfo* sent_info);
quic_framer_test.cc     [all...]
quic_connection.h 627 // Update the |sent_info| for an outgoing ack.
628 void UpdateSentPacketInfo(SentPacketInfo* sent_info);
quic_protocol.h 622 SentPacketInfo sent_info; member in struct:net::QuicAckFrame
    [all...]
quic_http_stream_test.cc 286 ack.sent_info.entropy_hash = 0;

Completed in 86 milliseconds