/aosp_15_r20/external/webrtc/logging/rtc_event_log/events/ |
H A D | rtc_event_rtcp_packet_outgoing.cc | 17 RtcEventRtcpPacketOutgoing::RtcEventRtcpPacketOutgoing( in RtcEventRtcpPacketOutgoing() function in webrtc::RtcEventRtcpPacketOutgoing 21 RtcEventRtcpPacketOutgoing::RtcEventRtcpPacketOutgoing( in RtcEventRtcpPacketOutgoing() function in webrtc::RtcEventRtcpPacketOutgoing 22 const RtcEventRtcpPacketOutgoing& other) in RtcEventRtcpPacketOutgoing() 26 RtcEventRtcpPacketOutgoing::~RtcEventRtcpPacketOutgoing() = default; 28 std::unique_ptr<RtcEventRtcpPacketOutgoing> RtcEventRtcpPacketOutgoing::Copy() in Copy() 30 return absl::WrapUnique<RtcEventRtcpPacketOutgoing>( in Copy() 31 new RtcEventRtcpPacketOutgoing(*this)); in Copy()
|
H A D | rtc_event_rtcp_packet_outgoing.h | 29 class RtcEventRtcpPacketOutgoing final : public RtcEvent { 33 explicit RtcEventRtcpPacketOutgoing(rtc::ArrayView<const uint8_t> packet); 34 ~RtcEventRtcpPacketOutgoing() override; 39 std::unique_ptr<RtcEventRtcpPacketOutgoing> Copy() const; 57 RtcEventRtcpPacketOutgoing(const RtcEventRtcpPacketOutgoing& other);
|
/aosp_15_r20/external/webrtc/logging/rtc_event_log/ |
H A D | rtc_event_log_unittest_helper.cc | 474 std::unique_ptr<RtcEventRtcpPacketOutgoing> 494 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() 499 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() 504 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() 509 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() 514 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() 519 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() 524 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() 529 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() 534 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing() [all …]
|
H A D | rtc_event_log_unittest_helper.h | 88 std::unique_ptr<RtcEventRtcpPacketOutgoing> NewRtcpPacketOutgoing(); 260 const RtcEventRtcpPacketOutgoing& original_event,
|
H A D | rtc_event_log_unittest.cc | 187 std::vector<std::unique_ptr<RtcEventRtcpPacketOutgoing>> outgoing_rtcp_list_;
|
H A D | rtc_event_log_parser.cc | 1533 RtcEventRtcpPacketOutgoing::Parse(event_fields, batched, in ParseStreamInternalV3()
|
/aosp_15_r20/external/webrtc/logging/rtc_event_log/encoder/ |
H A D | rtc_event_log_encoder_unittest.cc | 829 TEST_P(RtcEventLogEncoderTest, RtcEventRtcpPacketOutgoing) { in TEST_P() argument 830 std::vector<std::unique_ptr<RtcEventRtcpPacketOutgoing>> events(event_count_); in TEST_P() 870 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P() 908 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P() 946 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P() 984 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P() 1021 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P() 1058 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P() 1095 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P() 1132 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P() [all …]
|
H A D | rtc_event_log_encoder_legacy.h | 44 class RtcEventRtcpPacketOutgoing; variable 87 std::string EncodeRtcpPacketOutgoing(const RtcEventRtcpPacketOutgoing& event);
|
H A D | rtc_event_log_encoder_new_format.h | 46 class RtcEventRtcpPacketOutgoing; variable 137 rtc::ArrayView<const RtcEventRtcpPacketOutgoing*> batch,
|
H A D | rtc_event_log_encoder_v3.cc | 116 RtcEventRtcpPacketOutgoing::Encode; in RtcEventLogEncoderV3()
|
H A D | rtc_event_log_encoder_legacy.cc | 346 auto& rtc_event = static_cast<const RtcEventRtcpPacketOutgoing&>(event); in Encode() 618 const RtcEventRtcpPacketOutgoing& event) { in EncodeRtcpPacketOutgoing()
|
H A D | rtc_event_log_encoder_new_format.cc | 704 std::vector<const RtcEventRtcpPacketOutgoing*> outgoing_rtcp_packets; in EncodeBatch() 810 static_cast<const RtcEventRtcpPacketOutgoing* const>(it->get()); in EncodeBatch() 1443 rtc::ArrayView<const RtcEventRtcpPacketOutgoing*> batch, in EncodeRtcpPacketOutgoing()
|
/aosp_15_r20/external/webrtc/modules/rtp_rtcp/source/ |
H A D | rtcp_sender.cc | 250 event_log_->Log(std::make_unique<RtcEventRtcpPacketOutgoing>(packet)); in SendLossNotification() 667 event_log_->Log(std::make_unique<RtcEventRtcpPacketOutgoing>(packet)); in SendRTCP() 955 event_log_->Log(std::make_unique<RtcEventRtcpPacketOutgoing>(packet)); in SendCombinedRtcpPacket()
|