/external/webrtc/webrtc/p2p/base/ |
D | transportcontroller_unittest.cc | 81 FakeTransportChannel* CreateChannel(const std::string& content, in CreateChannel() function in TransportControllerTest 109 FakeTransportChannel* channel1 = CreateChannel("audio", 1); in CreateChannelsAndCompleteConnection_w() 111 FakeTransportChannel* channel2 = CreateChannel("video", 1); in CreateChannelsAndCompleteConnection_w() 201 FakeTransportChannel* channel1 = CreateChannel("audio", 1); in TEST_F() 209 FakeTransportChannel* channel2 = CreateChannel("video", 1); in TEST_F() 218 FakeTransportChannel* channel = CreateChannel("audio", 1); in TEST_F() 229 FakeTransportChannel* channel1 = CreateChannel("audio", 1); in TEST_F() 238 FakeTransportChannel* channel2 = CreateChannel("video", 1); in TEST_F() 246 FakeTransportChannel* channel1 = CreateChannel("audio", 1); in TEST_F() 248 FakeTransportChannel* channel2 = CreateChannel("video", 1); in TEST_F() [all …]
|
D | transport_unittest.cc | 42 channel_ = CreateChannel(1); in SetupChannel() 45 FakeTransportChannel* CreateChannel(int component) { in CreateChannel() function in TransportTest 47 transport_->CreateChannel(component)); in CreateChannel()
|
/external/webrtc/talk/media/base/ |
D | rtpdataengine_unittest.cc | 104 cricket::RtpDataMediaChannel* CreateChannel() { in CreateChannel() function in RtpDataMediaChannelTest 105 return CreateChannel(dme_.get()); in CreateChannel() 108 cricket::RtpDataMediaChannel* CreateChannel(cricket::RtpDataEngine* dme) { in CreateChannel() function in RtpDataMediaChannelTest 110 static_cast<cricket::RtpDataMediaChannel*>(dme->CreateChannel( in CreateChannel() 170 rtc::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel()); in TEST_F() 205 rtc::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel()); in TEST_F() 220 rtc::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel()); in TEST_F() 235 rtc::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel()); in TEST_F() 315 CreateChannel(dme1.get())); in TEST_F() 319 CreateChannel(dme2.get())); in TEST_F() [all …]
|
D | mediaengine.h | 82 virtual VoiceMediaChannel* CreateChannel( 156 virtual VoiceMediaChannel* CreateChannel(webrtc::Call* call, in CreateChannel() function 158 return voice_.CreateChannel(call, options); in CreateChannel() 162 return video_.CreateChannel(call, options); in CreateVideoChannel() 216 virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0;
|
D | hybriddataengine.h | 55 virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type) { in CreateChannel() function 58 channel = first_->CreateChannel(data_channel_type); in CreateChannel() 61 channel = second_->CreateChannel(data_channel_type); in CreateChannel()
|
D | rtpdataengine.h | 47 virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type);
|
/external/webrtc/webrtc/voice_engine/ |
D | voe_base_unittest.cc | 39 int channelID = base_->CreateChannel(); in TEST_F() 45 int channelID = base_->CreateChannel(); in TEST_F() 54 const int channel_1 = base_->CreateChannel(); in TEST_F() 59 const int channel_2 = base_->CreateChannel(); in TEST_F()
|
D | voe_network_unittest.cc | 36 int channelID = base_->CreateChannel(); in CreateChannelAndRegisterExternalTransport() 63 int channelID = base_->CreateChannel(); in TEST_F() 82 int channelID = base_->CreateChannel(); in TEST_F() 115 int channelID = base_->CreateChannel(); in TEST_F()
|
D | channel_manager.cc | 55 ChannelOwner ChannelManager::CreateChannel() { in CreateChannel() function in webrtc::voe::ChannelManager 59 ChannelOwner ChannelManager::CreateChannel(const Config& external_config) { in CreateChannel() function in webrtc::voe::ChannelManager 65 Channel::CreateChannel(channel, ++last_channel_id_, instance_id_, in CreateChannelInternal()
|
D | channel_manager.h | 102 ChannelOwner CreateChannel(); 103 ChannelOwner CreateChannel(const Config& external_config);
|
D | voe_base_impl.h | 37 int CreateChannel() override; 38 int CreateChannel(const Config& config) override;
|
D | voe_base_impl.cc | 389 int VoEBaseImpl::CreateChannel() { in CreateChannel() function in webrtc::VoEBaseImpl 396 voe::ChannelOwner channel_owner = shared_->channel_manager().CreateChannel(); in CreateChannel() 400 int VoEBaseImpl::CreateChannel(const Config& config) { in CreateChannel() function in webrtc::VoEBaseImpl 407 shared_->channel_manager().CreateChannel(config); in CreateChannel()
|
/external/webrtc/webrtc/voice_engine/test/auto_test/ |
D | voe_stress_test.cc | 133 VALIDATE_STRESS(base->CreateChannel()); in StartStopTest() 235 channel = base->CreateChannel(); in CreateDeleteChannelsTest() 254 channel = base->CreateChannel(); in CreateDeleteChannelsTest() 319 VALIDATE_STRESS(base->CreateChannel()); in MultipleThreadsTest()
|
D | voe_cpu_test.cc | 65 channel = base->CreateChannel(); in DoTest()
|
/external/webrtc/webrtc/voice_engine/test/auto_test/fakes/ |
D | conference_transport.cc | 66 local_sender_ = local_base_->CreateChannel(); in ConferenceTransport() 76 reflector_ = remote_base_->CreateChannel(); in ConferenceTransport() 226 const int new_sender = remote_base_->CreateChannel(); in AddStream() 239 const int new_receiver = local_base_->CreateChannel(); in AddStream()
|
/external/webrtc/webrtc/voice_engine/include/ |
D | voe_base.h | 143 virtual int CreateChannel() = 0; 144 virtual int CreateChannel(const Config& config) = 0;
|
/external/webrtc/talk/media/sctp/ |
D | sctpdataengine_unittest.cc | 232 chan1_.reset(CreateChannel(net1_.get(), recv1_.get())); in SetupConnectedChannels() 236 chan2_.reset(CreateChannel(net2_.get(), recv2_.get())); in SetupConnectedChannels() 283 cricket::SctpDataMediaChannel* CreateChannel( in CreateChannel() function in SctpDataMediaChannelTest 286 static_cast<cricket::SctpDataMediaChannel*>(engine_->CreateChannel( in CreateChannel()
|
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/ |
D | rtp_rtcp_before_streaming_test.cc | 25 EXPECT_THAT(channel_ = voe_base_->CreateChannel(), Not(Lt(0))); in SetUp()
|
D | mixing_test.cc | 74 local_streams[i] = voe_base_->CreateChannel(); in RunMixingTest() 82 remote_streams[i] = voe_base_->CreateChannel(); in RunMixingTest()
|
D | codec_before_streaming_test.cc | 21 channel_ = voe_base_->CreateChannel(); in SetUp()
|
D | rtp_rtcp_test.cc | 63 second_channel_ = voe_base_->CreateChannel(); in SetUp()
|
D | file_before_streaming_test.cc | 32 channel_ = voe_base_->CreateChannel(); in SetUp()
|
/external/webrtc/webrtc/modules/video_render/windows/ |
D | i_video_render_win.h | 40 * CreateChannel(const uint32_t streamId,
|
/external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/ |
D | before_streaming_fixture.cc | 14 : channel_(voe_base_->CreateChannel()), in BeforeStreamingFixture()
|
/external/webrtc/webrtc/tools/e2e_quality/audio/ |
D | audio_e2e_harness.cc | 48 int channel = base->CreateChannel(); in RunHarness()
|