Searched refs:AlrDetector (Results 1 – 5 of 5) sorted by relevance
/external/webrtc/modules/congestion_controller/goog_cc/ |
D | alr_detector.cc | 61 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()
|
D | alr_detector.h | 46 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();
|
D | alr_detector_unittest.cc | 29 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()
|
D | goog_cc_network_control.h | 99 std::unique_ptr<AlrDetector> alr_detector_;
|
D | goog_cc_network_control.cc | 101 std::make_unique<AlrDetector>(key_value_config_, config.event_log)), in GoogCcNetworkController()
|