Home
last modified time | relevance | path

Searched refs:current_data_window_ (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/modules/congestion_controller/goog_cc/
Dcongestion_window_pushback_controller.cc34 current_data_window_( in CongestionWindowPushbackController()
48 current_data_window_ = data_window; in SetDataWindow()
53 if (!current_data_window_ || current_data_window_->IsZero()) in UpdateTargetBitrate()
59 total_bytes / static_cast<double>(current_data_window_->bytes()); in UpdateTargetBitrate()
Dgoog_cc_network_control.cc217 if (congestion_window_pushback_controller_ && current_data_window_) { in OnProcessInterval()
219 *current_data_window_); in OnProcessInterval()
221 update.congestion_window = current_data_window_; in OnProcessInterval()
396 if (current_data_window_) { in UpdateCongestionWindowSize()
398 std::max(kMinCwnd, (data_window + current_data_window_.value()) / 2); in UpdateCongestionWindowSize()
402 current_data_window_ = data_window; in UpdateCongestionWindowSize()
577 if (congestion_window_pushback_controller_ && current_data_window_) { in OnTransportPacketsFeedback()
579 *current_data_window_); in OnTransportPacketsFeedback()
581 update.congestion_window = current_data_window_; in OnTransportPacketsFeedback()
610 update.congestion_window = current_data_window_; in GetNetworkState()
Dcongestion_window_pushback_controller.h40 absl::optional<DataSize> current_data_window_; variable
Dgoog_cc_network_control.h139 absl::optional<DataSize> current_data_window_; variable
/external/webrtc/modules/congestion_controller/goog_cc/test/
Dgoog_cc_printer.cc127 Log("data_window", [=] { return controller_->current_data_window_; }), in CreateLoggers()