Home
last modified time | relevance | path

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

/external/webrtc/modules/congestion_controller/goog_cc/
Dalr_detector.cc61 AlrDetector::AlrDetector(AlrDetectorConfig config, RtcEventLog* event_log) in AlrDetector() function in webrtc::AlrDetector
64 AlrDetector::AlrDetector(const WebRtcKeyValueConfig* key_value_config) in AlrDetector() function in webrtc::AlrDetector
65 : AlrDetector(GetConfigFromTrials(key_value_config), nullptr) {} in AlrDetector()
67 AlrDetector::AlrDetector(const WebRtcKeyValueConfig* key_value_config, in AlrDetector() function in webrtc::AlrDetector
69 : AlrDetector(GetConfigFromTrials(key_value_config), event_log) {} in AlrDetector()
70 AlrDetector::~AlrDetector() {} in ~AlrDetector()
72 void AlrDetector::OnBytesSent(size_t bytes_sent, int64_t send_time_ms) { in OnBytesSent()
100 void AlrDetector::SetEstimatedBitrate(int bitrate_bps) { in SetEstimatedBitrate()
107 absl::optional<int64_t> AlrDetector::GetApplicationLimitedRegionStartTime() in GetApplicationLimitedRegionStartTime()
Dalr_detector.h46 class AlrDetector {
48 AlrDetector(AlrDetectorConfig config, RtcEventLog* event_log);
49 explicit AlrDetector(const WebRtcKeyValueConfig* key_value_config);
50 AlrDetector(const WebRtcKeyValueConfig* key_value_config,
52 ~AlrDetector();
Dalr_detector_unittest.cc29 explicit SimulateOutgoingTrafficIn(AlrDetector* alr_detector, in SimulateOutgoingTrafficIn()
66 AlrDetector* const alr_detector_;
76 AlrDetector alr_detector(&field_trials); in TEST()
104 AlrDetector alr_detector(&field_trials); in TEST()
131 AlrDetector alr_detector(&field_trials); in TEST()
184 AlrDetector alr_detector(&field_trials); in TEST()
Dgoog_cc_network_control.h99 std::unique_ptr<AlrDetector> alr_detector_;
Dgoog_cc_network_control.cc101 std::make_unique<AlrDetector>(key_value_config_, config.event_log)), in GoogCcNetworkController()