Home
last modified time | relevance | path

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

/external/webrtc/logging/rtc_event_log/events/
Drtc_event_alr_state.cc17 RtcEventAlrState::RtcEventAlrState(bool in_alr) : in_alr_(in_alr) {} in RtcEventAlrState() function in webrtc::RtcEventAlrState
19 RtcEventAlrState::RtcEventAlrState(const RtcEventAlrState& other) in RtcEventAlrState() function in webrtc::RtcEventAlrState
22 RtcEventAlrState::~RtcEventAlrState() = default;
24 RtcEvent::Type RtcEventAlrState::GetType() const { in GetType()
28 bool RtcEventAlrState::IsConfigEvent() const { in IsConfigEvent()
32 std::unique_ptr<RtcEventAlrState> RtcEventAlrState::Copy() const { in Copy()
33 return absl::WrapUnique<RtcEventAlrState>(new RtcEventAlrState(*this)); in Copy()
Drtc_event_alr_state.h20 class RtcEventAlrState final : public RtcEvent {
22 explicit RtcEventAlrState(bool in_alr);
23 ~RtcEventAlrState() override;
29 std::unique_ptr<RtcEventAlrState> Copy() const;
34 RtcEventAlrState(const RtcEventAlrState& other);
/external/webrtc/logging/rtc_event_log/encoder/
Drtc_event_log_encoder_legacy.h46 class RtcEventAlrState; variable
64 std::string EncodeAlrState(const RtcEventAlrState& event);
Drtc_event_log_encoder_new_format.h29 class RtcEventAlrState; variable
72 void EncodeAlrState(rtc::ArrayView<const RtcEventAlrState*> batch,
Drtc_event_log_encoder_legacy.cc269 auto& rtc_event = static_cast<const RtcEventAlrState&>(event); in Encode()
380 const RtcEventAlrState& event) { in EncodeAlrState()
Drtc_event_log_encoder_new_format.cc669 std::vector<const RtcEventAlrState*> alr_state_events; in EncodeBatch()
705 static_cast<const RtcEventAlrState* const>(it->get()); in EncodeBatch()
897 rtc::ArrayView<const RtcEventAlrState*> batch, in EncodeAlrState()
899 for (const RtcEventAlrState* base_event : batch) { in EncodeAlrState()
Drtc_event_log_encoder_unittest.cc203 TEST_P(RtcEventLogEncoderTest, RtcEventAlrState) { in TEST_P() argument
204 std::vector<std::unique_ptr<RtcEventAlrState>> events(event_count_); in TEST_P()
/external/webrtc/logging/rtc_event_log/
Drtc_event_log_unittest_helper.h67 std::unique_ptr<RtcEventAlrState> NewAlrState();
153 void VerifyLoggedAlrStateEvent(const RtcEventAlrState& original_event,
Drtc_event_log_unittest_helper.cc91 std::unique_ptr<RtcEventAlrState> EventGenerator::NewAlrState() { in NewAlrState()
92 return std::make_unique<RtcEventAlrState>(prng_.Rand<bool>()); in NewAlrState()
740 const RtcEventAlrState& original_event, in VerifyLoggedAlrStateEvent()
Drtc_event_log_unittest.cc157 std::vector<std::unique_ptr<RtcEventAlrState>> alr_state_list_;
/external/webrtc/modules/congestion_controller/goog_cc/
Dalr_detector.cc96 std::make_unique<RtcEventAlrState>(alr_started_time_ms_.has_value())); in OnBytesSent()