Searched defs:CreateChannel (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dhybriddataengine.h55 virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type) { function in class:cricket::HybridDataEngine
58 channel = first_->CreateChannel(data_channel_type);
61 channel = second_->CreateChannel(data_channel_type);
H A Dfilemediaengine.cc61 VoiceMediaChannel* FileMediaEngine::CreateChannel() { function in class:cricket::FileMediaEngine
H A Dhybridvideoengine.h172 HybridVideoMediaChannel* CreateChannel(VoiceMediaChannel* channel) { function in class:cricket::HybridVideoEngine
174 video1_.CreateChannel(channel));
180 video2_.CreateChannel(channel));
H A Drtpdataengine.cc61 DataMediaChannel* RtpDataEngine::CreateChannel( function in class:cricket::RtpDataEngine
H A Drtpdataengine_unittest.cc112 cricket::RtpDataMediaChannel* CreateChannel() { function in class:RtpDataMediaChannelTest
113 return CreateChannel(dme_.get());
116 cricket::RtpDataMediaChannel* CreateChannel(cricket::RtpDataEngine* dme) { function in class:RtpDataMediaChannelTest
118 static_cast<cricket::RtpDataMediaChannel*>(dme->CreateChannel(
178 talk_base::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
206 talk_base::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
221 talk_base::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
236 talk_base::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
316 CreateChannel(dme1.get()));
320 CreateChannel(dme
[all...]
H A Dmediaengine.h80 virtual VoiceMediaChannel *CreateChannel() = 0;
201 virtual VoiceMediaChannel *CreateChannel() { function in class:cricket::CompositeMediaEngine
202 return voice_.CreateChannel();
205 return video_.CreateChannel(channel);
308 VoiceMediaChannel* CreateChannel() { function in class:cricket::NullVoiceEngine
353 VideoMediaChannel* CreateChannel( function in class:cricket::NullVideoEngine
389 virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0;
/external/chromium_org/chrome/service/
H A Dservice_ipc_server.cc23 CreateChannel();
27 void ServiceIPCServer::CreateChannel() { function in class:ServiceIPCServer
67 CreateChannel();
/external/chromium_org/ipc/
H A Dipc_test_base.cc52 void IPCTestBase::CreateChannel(IPC::Listener* listener) { function in class:IPCTestBase
H A Dipc_channel_proxy.cc51 void ChannelProxy::Context::CreateChannel(const IPC::ChannelHandle& handle, function in class:IPC::ChannelProxy::Context
354 context_->CreateChannel(channel_handle, mode);
357 FROM_HERE, base::Bind(&Context::CreateChannel, context_.get(),
/external/chromium_org/mojo/embedder/
H A Dembedder.cc100 ScopedMessagePipeHandle CreateChannel( function in namespace:mojo::embedder
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dportallocatorsessionproxy_unittest.cc118 TestSessionChannel* CreateChannel() { function in class:PortAllocatorSessionProxyTest
137 TestSessionChannel* channel = CreateChannel();
145 TestSessionChannel* channel1 = CreateChannel();
H A Dtransport_unittest.cc74 channel_ = CreateChannel(1);
77 FakeTransportChannel* CreateChannel(int component) { function in class:TransportTest
79 transport_->CreateChannel(component));
144 EXPECT_TRUE(transport_->CreateChannel(1) != NULL);
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel_manager.cc54 ChannelOwner ChannelManager::CreateChannel() { function in class:webrtc::voe::ChannelManager
58 ChannelOwner ChannelManager::CreateChannel(const Config& external_config) { function in class:webrtc::voe::ChannelManager
64 Channel::CreateChannel(channel, ++last_channel_id_, instance_id_, config);
H A Dvoe_base_impl.cc497 int VoEBaseImpl::CreateChannel() { function in class:webrtc::VoEBaseImpl
499 "CreateChannel()");
506 voe::ChannelOwner channel_owner = _shared->channel_manager().CreateChannel();
511 int VoEBaseImpl::CreateChannel(const Config& config) { function in class:webrtc::VoEBaseImpl
517 voe::ChannelOwner channel_owner = _shared->channel_manager().CreateChannel(
535 "CreateChannel() failed to associate engine and channel."
544 "CreateChannel() failed to initialize channel. Destroying"
553 "CreateChannel() => %d", channel_owner->channel()->ChannelId());
/external/chromium_org/content/common/
H A Dchild_process_host_impl.cc165 std::string ChildProcessHostImpl::CreateChannel() { function in class:content::ChildProcessHostImpl
/external/chromium_org/remoting/protocol/
H A Dchannel_multiplexer_unittest.cc93 void CreateChannel(const std::string& name, function in class:remoting::protocol::ChannelMultiplexerTest
149 CreateChannel(kTestChannelName, &host_socket, &client_socket));
164 CreateChannel(kTestChannelName, &host_socket1_, &client_socket1_));
169 CreateChannel(kTestChannelName2, &host_socket2_, &client_socket2_));
191 CreateChannel(kTestChannelName, &host_socket1_, &client_socket1_));
196 CreateChannel(kTestChannelName2, &host_socket2_, &client_socket2_));
201 CreateChannel("test3", &host_socket3, &client_socket3));
206 CreateChannel("ch4", &host_socket4, &client_socket4));
236 CreateChannel(kTestChannelName, &host_socket1_, &client_socket1_));
241 CreateChannel(kTestChannelName
[all...]
H A Djingle_session_unittest.cc264 void CreateChannel() { function in class:remoting::protocol::JingleSessionTest
387 ASSERT_NO_FATAL_FAILURE(CreateChannel());
487 ASSERT_NO_FATAL_FAILURE(CreateChannel());
/external/chromium_org/third_party/libjingle/source/talk/media/other/
H A Dlinphonemediaengine.cc104 VoiceMediaChannel* LinphoneMediaEngine::CreateChannel() { function in class:cricket::LinphoneMediaEngine
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dvoice_engine_jni.cc92 int CreateChannel() { function in class:__anon15039::VoiceEngineData
93 int channel = base->CreateChannel();
212 return voe_data->CreateChannel();
H A Dvideo_engine_jni.cc191 int CreateChannel() { function in class:__anon15038::VideoEngineData
193 CHECK(base->CreateChannel(channel) == 0, "Failed to create channel");
398 return vie_data->CreateChannel();
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_base_impl.cc178 int ViEBaseImpl::CreateChannel(int& video_channel) { // NOLINT function in class:webrtc::ViEBaseImpl
179 return CreateChannel(video_channel, static_cast<const Config*>(NULL));
182 int ViEBaseImpl::CreateChannel(int& video_channel, // NOLINT function in class:webrtc::ViEBaseImpl
184 if (shared_data_.channel_manager()->CreateChannel(&video_channel,
194 int ViEBaseImpl::CreateChannel(int& video_channel, // NOLINT function in class:webrtc::ViEBaseImpl
196 return CreateChannel(video_channel, original_channel, true);
201 return CreateChannel(video_channel, original_channel, false);
379 int ViEBaseImpl::CreateChannel(int& video_channel, // NOLINT
387 if (shared_data_.channel_manager()->CreateChannel(&video_channel,
H A Dvie_channel_manager.cc77 int ViEChannelManager::CreateChannel(int* channel_id, function in class:webrtc::ViEChannelManager
135 int ViEChannelManager::CreateChannel(int* channel_id, function in class:webrtc::ViEChannelManager
/external/chromium_org/third_party/libjingle/source/talk/media/sctp/
H A Dsctpdataengine_unittest.cc238 chan1_.reset(CreateChannel(net1_.get(), recv1_.get()));
240 chan2_.reset(CreateChannel(net2_.get(), recv2_.get()));
279 cricket::SctpDataMediaChannel* CreateChannel( function in class:SctpDataMediaChannelTest
282 static_cast<cricket::SctpDataMediaChannel*>(engine_->CreateChannel(
H A Dsctpdataengine.cc296 DataMediaChannel* SctpDataEngine::CreateChannel( function in class:cricket::SctpDataEngine
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/src/org/webrtc/voiceengine/test/
H A DAndroidTest.java387 _channel = CreateChannel();
1119 private native int CreateChannel(); method in class:AndroidTest

Completed in 530 milliseconds

12