Home
last modified time | relevance | path

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

/external/webrtc/logging/rtc_event_log/events/
Drtc_event_route_change.cc17 RtcEventRouteChange::RtcEventRouteChange(bool connected, uint32_t overhead) in RtcEventRouteChange() function in webrtc::RtcEventRouteChange
20 RtcEventRouteChange::RtcEventRouteChange(const RtcEventRouteChange& other) in RtcEventRouteChange() function in webrtc::RtcEventRouteChange
25 RtcEventRouteChange::~RtcEventRouteChange() = default;
27 std::unique_ptr<RtcEventRouteChange> RtcEventRouteChange::Copy() const { in Copy()
28 return absl::WrapUnique<RtcEventRouteChange>(new RtcEventRouteChange(*this)); in Copy()
Drtc_event_route_change.h39 class RtcEventRouteChange final : public RtcEvent {
43 RtcEventRouteChange(bool connected, uint32_t overhead);
44 ~RtcEventRouteChange() override;
49 std::unique_ptr<RtcEventRouteChange> Copy() const;
68 RtcEventRouteChange(const RtcEventRouteChange& other);
/external/webrtc/logging/rtc_event_log/encoder/
Drtc_event_log_encoder_new_format.h30 class RtcEventRouteChange; variable
129 void EncodeRouteChange(rtc::ArrayView<const RtcEventRouteChange*> batch,
Drtc_event_log_encoder_v3.cc112 encoders_[RtcEvent::Type::RouteChangeEvent] = RtcEventRouteChange::Encode; in RtcEventLogEncoderV3()
Drtc_event_log_encoder_new_format.cc701 std::vector<const RtcEventRouteChange*> route_change_events; in EncodeBatch()
792 static_cast<const RtcEventRouteChange* const>(it->get()); in EncodeBatch()
1350 rtc::ArrayView<const RtcEventRouteChange*> batch, in EncodeRouteChange()
1352 for (const RtcEventRouteChange* base_event : batch) { in EncodeRouteChange()
Drtc_event_log_encoder_unittest.cc232 TEST_P(RtcEventLogEncoderTest, RtcEventRouteChange) { in TEST_P() argument
236 std::vector<std::unique_ptr<RtcEventRouteChange>> events(event_count_); in TEST_P()
/external/webrtc/logging/rtc_event_log/
Drtc_event_log_unittest_helper.h85 std::unique_ptr<RtcEventRouteChange> NewRouteChange();
208 const RtcEventRouteChange& original_event,
Drtc_event_log_unittest_helper.cc394 std::unique_ptr<RtcEventRouteChange> EventGenerator::NewRouteChange() { in NewRouteChange()
395 return std::make_unique<RtcEventRouteChange>(prng_.Rand<bool>(), in NewRouteChange()
1004 const RtcEventRouteChange& original_event, in VerifyLoggedRouteChangeEvent()
Drtc_event_log_unittest.cc184 std::vector<std::unique_ptr<RtcEventRouteChange>> route_change_list_;
Drtc_event_log_parser.cc1526 RtcEventRouteChange::Parse(event_fields, batched, route_change_events_); in ParseStreamInternalV3()
/external/webrtc/call/
Drtp_transport_controller_send.cc329 event_log_->Log(std::make_unique<RtcEventRouteChange>( in OnNetworkRouteChanged()