Home
last modified time | relevance | path

Searched refs:last_send_time_ (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/modules/rtp_rtcp/source/
Dabsolute_capture_time_sender.cc34 : clock_(clock), last_send_time_(kInvalidLastSendTime) {} in AbsoluteCaptureTimeSender()
64 last_send_time_ = send_time; in OnSendPacket()
80 if (last_send_time_ == kInvalidLastSendTime) { in ShouldSendExtension()
85 if ((send_time - last_send_time_) > kInterpolationMaxInterval) { in ShouldSendExtension()
Dabsolute_capture_time_sender.h76 Timestamp last_send_time_ RTC_GUARDED_BY(mutex_);
/external/webrtc/modules/audio_coding/neteq/
Dneteq_stereo_unittest.cc67 last_send_time_(0), in NetEqStereoTest()
144 int arrival_time = last_arrival_time_ + (send_time - last_send_time_); in GetArrivalTime()
145 last_send_time_ = send_time; in GetArrivalTime()
226 int last_send_time_; member in webrtc::NetEqStereoTest
255 last_arrival_time_ + drift_factor * (send_time - last_send_time_); in GetArrivalTime()
256 last_send_time_ = send_time; in GetArrivalTime()
293 last_send_time_ = send_time; in GetArrivalTime()
/external/webrtc/modules/pacing/
Dpacing_controller.cc128 last_send_time_(last_process_time_), in PacingController()
329 TimeDelta elapsed_since_last_send = now - last_send_time_; in ShouldSendKeepalive()
341 return last_send_time_ + kPausedProcessInterval; in NextSendTime()
373 return last_send_time_ + kCongestedPacketInterval; in NextSendTime()
378 return std::min(last_send_time_ + kPausedProcessInterval, in NextSendTime()
388 return std::min(last_send_time_ + kPausedProcessInterval, in NextSendTime()
393 return last_send_time_ + kPausedProcessInterval; in NextSendTime()
435 last_send_time_ = now; in ProcessPackets()
698 last_send_time_ = send_time; in OnPacketSent()
706 last_send_time_ = CurrentTime(); in OnPaddingSent()
Dpacing_controller.h223 Timestamp last_send_time_; variable
/external/webrtc/test/network/
Dcross_traffic.cc52 at_time >= last_send_time_ + config_.min_packet_interval) { in Process()
55 last_send_time_ = at_time; in Process()
91 last_send_time_ = at_time; in Process()
95 DataSize pending_size = config_.peak_rate * (at_time - last_send_time_); in Process()
98 at_time >= last_send_time_ + config_.min_packet_interval) { in Process()
100 last_send_time_ = at_time; in Process()
Dcross_traffic.h59 Timestamp last_send_time_ RTC_GUARDED_BY(sequence_checker_) =
90 Timestamp last_send_time_ RTC_GUARDED_BY(sequence_checker_) =
/external/webrtc/modules/congestion_controller/rtp/
Dtransport_feedback_adapter.cc124 last_send_time_ = std::max(last_send_time_, send_time); in ProcessSentPacket()
142 if (send_time < last_send_time_) { in ProcessSentPacket()
Dtransport_feedback_adapter.h83 Timestamp last_send_time_ = Timestamp::MinusInfinity();
/external/openscreen/discovery/mdns/
Dmdns_trackers.cc312 last_send_time_ = TrivialClockTraits::time_point::min(); in MdnsQuestionTracker()
368 if (now < last_send_time_ + kMinimumQueryInterval) { in SendQuery()
371 last_send_time_ = now; in SendQuery()
Dmdns_trackers.h244 mutable TrivialClockTraits::time_point last_send_time_; variable