/external/webrtc/modules/rtp_rtcp/source/ |
D | source_tracker_unittest.cc | 65 std::vector<RtpSource> GetSources() const { in GetSources() function in webrtc::__anonac8817e20111::ExpectedSourceTracker 214 ASSERT_THAT(actual_tracker.GetSources(), IsEmpty()); in TEST_P() 215 ASSERT_THAT(expected_tracker.GetSources(), IsEmpty()); in TEST_P() 225 ASSERT_THAT(actual_tracker.GetSources(), in TEST_P() 226 ElementsAreArray(expected_tracker.GetSources())); in TEST_P() 239 EXPECT_THAT(tracker.GetSources(), IsEmpty()); in TEST() 264 EXPECT_THAT(tracker.GetSources(), in TEST() 312 tracker.GetSources(), in TEST() 360 tracker.GetSources(), in TEST()
|
D | source_tracker.h | 54 std::vector<RtpSource> GetSources() const;
|
D | source_tracker.cc | 53 std::vector<RtpSource> SourceTracker::GetSources() const { in GetSources() function in webrtc::SourceTracker
|
/external/webrtc/api/ |
D | rtp_receiver_interface.h | 98 virtual std::vector<RtpSource> GetSources() const; 136 PROXY_CONSTMETHOD0(std::vector<RtpSource>, GetSources)
|
D | rtp_receiver_interface.cc | 24 std::vector<RtpSource> RtpReceiverInterface::GetSources() const { in GetSources() function in webrtc::RtpReceiverInterface
|
/external/webrtc/api/test/ |
D | mock_rtpreceiver.h | 40 MOCK_METHOD(std::vector<RtpSource>, GetSources, (), (const override));
|
/external/webrtc/pc/ |
D | audio_rtp_receiver.cc | 220 std::vector<RtpSource> AudioRtpReceiver::GetSources() const { in GetSources() function in webrtc::AudioRtpReceiver 225 RTC_FROM_HERE, [&] { return media_channel_->GetSources(*ssrc_); }); in GetSources()
|
D | video_rtp_receiver.cc | 286 std::vector<RtpSource> VideoRtpReceiver::GetSources() const { in GetSources() function in webrtc::VideoRtpReceiver 291 RTC_FROM_HERE, [&] { return media_channel_->GetSources(*ssrc_); }); in GetSources()
|
D | audio_rtp_receiver.h | 105 std::vector<RtpSource> GetSources() const override;
|
D | video_rtp_receiver.h | 113 std::vector<RtpSource> GetSources() const override;
|
/external/webrtc/pc/test/ |
D | mock_rtp_receiver_internal.h | 48 MOCK_METHOD(std::vector<RtpSource>, GetSources, (), (const, override));
|
/external/webrtc/call/ |
D | audio_receive_stream.h | 194 virtual std::vector<RtpSource> GetSources() const = 0;
|
D | video_receive_stream.h | 287 virtual std::vector<RtpSource> GetSources() const = 0;
|
/external/webrtc/audio/ |
D | audio_receive_stream.h | 75 std::vector<webrtc::RtpSource> GetSources() const override;
|
D | audio_receive_stream.cc | 278 std::vector<RtpSource> AudioReceiveStream::GetSources() const { in GetSources() function in webrtc::internal::AudioReceiveStream 280 return source_tracker_.GetSources(); in GetSources()
|
/external/libaom/libaom/test/ |
D | blend_a64_mask_test.cc | 50 void GetSources(Pixel **src0, Pixel **src1, Pixel * /*dst*/, int run_times) { in GetSources() function in __anonc3c2443a0111::BlendA64MaskTest 77 void GetSources(uint16_t **src0, uint16_t **src1, uint8_t * /*dst*/, in GetSources() function in __anonc3c2443a0111::BlendA64MaskTest 111 GetSources(&p_src0, &p_src1, &dst_ref_[0], run_times); in RunOneTest()
|
/external/webrtc/media/engine/ |
D | fake_webrtc_call.h | 117 std::vector<webrtc::RtpSource> GetSources() const override { in GetSources() function 225 std::vector<webrtc::RtpSource> GetSources() const override { in GetSources() function
|
D | webrtc_video_engine.h | 219 std::vector<webrtc::RtpSource> GetSources(uint32_t ssrc) const override; 456 std::vector<webrtc::RtpSource> GetSources();
|
/external/webrtc/video/ |
D | video_receive_stream.h | 132 std::vector<webrtc::RtpSource> GetSources() const override;
|
D | video_receive_stream2.h | 154 std::vector<webrtc::RtpSource> GetSources() const override;
|
D | video_receive_stream_unittest.cc | 364 EXPECT_THAT(video_receive_stream_->GetSources(), IsEmpty()); in TEST_F() 376 std::vector<RtpSource> sources = video_receive_stream_->GetSources(); in TEST_F()
|
D | video_receive_stream.cc | 755 std::vector<webrtc::RtpSource> VideoReceiveStream::GetSources() const { in GetSources() function in webrtc::internal::VideoReceiveStream 756 return source_tracker_.GetSources(); in GetSources()
|
D | video_receive_stream2.cc | 781 std::vector<webrtc::RtpSource> VideoReceiveStream2::GetSources() const { in GetSources() function in webrtc::internal::VideoReceiveStream2 782 return source_tracker_.GetSources(); in GetSources()
|
D | video_receive_stream2_unittest.cc | 368 EXPECT_THAT(video_receive_stream_->GetSources(), IsEmpty()); in TEST_F() 380 std::vector<RtpSource> sources = video_receive_stream_->GetSources(); in TEST_F()
|
/external/webrtc/media/base/ |
D | fake_media_engine.cc | 198 std::vector<webrtc::RtpSource> FakeVoiceMediaChannel::GetSources( in GetSources() function in cricket::FakeVoiceMediaChannel 365 std::vector<webrtc::RtpSource> FakeVideoMediaChannel::GetSources( in GetSources() function in cricket::FakeVideoMediaChannel
|