Home
last modified time | relevance | path

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

/external/webrtc/logging/rtc_event_log/events/
Drtc_event_rtcp_packet_outgoing.cc17 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 RtcEvent::Type RtcEventRtcpPacketOutgoing::GetType() const { in GetType()
32 bool RtcEventRtcpPacketOutgoing::IsConfigEvent() const { in IsConfigEvent()
36 std::unique_ptr<RtcEventRtcpPacketOutgoing> RtcEventRtcpPacketOutgoing::Copy() in Copy()
38 return absl::WrapUnique<RtcEventRtcpPacketOutgoing>( in Copy()
39 new RtcEventRtcpPacketOutgoing(*this)); in Copy()
Drtc_event_rtcp_packet_outgoing.h24 class RtcEventRtcpPacketOutgoing final : public RtcEvent {
26 explicit RtcEventRtcpPacketOutgoing(rtc::ArrayView<const uint8_t> packet);
27 ~RtcEventRtcpPacketOutgoing() override;
33 std::unique_ptr<RtcEventRtcpPacketOutgoing> Copy() const;
38 RtcEventRtcpPacketOutgoing(const RtcEventRtcpPacketOutgoing& other);
/external/webrtc/logging/rtc_event_log/encoder/
Drtc_event_log_encoder_legacy.h41 class RtcEventRtcpPacketOutgoing; variable
84 std::string EncodeRtcpPacketOutgoing(const RtcEventRtcpPacketOutgoing& event);
Drtc_event_log_encoder_unittest.cc765 TEST_P(RtcEventLogEncoderTest, RtcEventRtcpPacketOutgoing) { in TEST_P() argument
766 std::vector<std::unique_ptr<RtcEventRtcpPacketOutgoing>> events(event_count_); in TEST_P()
806 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P()
845 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P()
884 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P()
923 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P()
961 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P()
999 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P()
1037 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P()
1076 std::make_unique<RtcEventRtcpPacketOutgoing>(buffer)); in TEST_P()
[all …]
Drtc_event_log_encoder_new_format.h46 class RtcEventRtcpPacketOutgoing; variable
133 rtc::ArrayView<const RtcEventRtcpPacketOutgoing*> batch,
Drtc_event_log_encoder_legacy.cc340 auto& rtc_event = static_cast<const RtcEventRtcpPacketOutgoing&>(event); in Encode()
589 const RtcEventRtcpPacketOutgoing& event) { in EncodeRtcpPacketOutgoing()
Drtc_event_log_encoder_new_format.cc692 std::vector<const RtcEventRtcpPacketOutgoing*> outgoing_rtcp_packets; in EncodeBatch()
798 static_cast<const RtcEventRtcpPacketOutgoing* const>(it->get()); in EncodeBatch()
1416 rtc::ArrayView<const RtcEventRtcpPacketOutgoing*> batch, in EncodeRtcpPacketOutgoing()
/external/webrtc/logging/rtc_event_log/
Drtc_event_log_unittest_helper.cc428 std::unique_ptr<RtcEventRtcpPacketOutgoing>
447 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
452 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
457 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
462 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
467 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
472 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
477 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
482 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
487 return std::make_unique<RtcEventRtcpPacketOutgoing>(buffer); in NewRtcpPacketOutgoing()
[all …]
Drtc_event_log_unittest_helper.h85 std::unique_ptr<RtcEventRtcpPacketOutgoing> NewRtcpPacketOutgoing();
253 const RtcEventRtcpPacketOutgoing& original_event,
Drtc_event_log_unittest.cc182 std::vector<std::unique_ptr<RtcEventRtcpPacketOutgoing>> outgoing_rtcp_list_;
/external/webrtc/modules/rtp_rtcp/source/
Drtcp_sender.cc69 event_log_->Log(std::make_unique<RtcEventRtcpPacketOutgoing>(packet)); in SendPackets()
1016 event_log_->Log(std::make_unique<RtcEventRtcpPacketOutgoing>(packet)); in SendCombinedRtcpPacket()