HomeSort by relevance Sort by last modified time
    Searched defs:CreateChannel (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
hybriddataengine.h 55 virtual DataMediaChannel* CreateChannel(DataChannelType data_channel_type) {
58 channel = first_->CreateChannel(data_channel_type);
61 channel = second_->CreateChannel(data_channel_type);
filemediaengine.cc 61 VoiceMediaChannel* FileMediaEngine::CreateChannel() {
rtpdataengine.cc 61 DataMediaChannel* RtpDataEngine::CreateChannel(
rtpdataengine_unittest.cc 112 cricket::RtpDataMediaChannel* CreateChannel() {
113 return CreateChannel(dme_.get());
116 cricket::RtpDataMediaChannel* CreateChannel(cricket::RtpDataEngine* dme) {
118 static_cast<cricket::RtpDataMediaChannel*>(dme->CreateChannel(
178 rtc::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
206 rtc::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
221 rtc::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
236 rtc::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
316 CreateChannel(dme1.get()));
320 CreateChannel(dme2.get()))
    [all...]
  /external/chromium_org/ipc/mojo/
ipc_mojo_perftest.cc 76 virtual scoped_ptr<IPC::Channel> CreateChannel(
84 scoped_ptr<IPC::Channel> MojoTestClient::CreateChannel(
  /external/chromium_org/remoting/protocol/
pseudotcp_channel_factory.cc 40 void PseudoTcpChannelFactory::CreateChannel(
43 datagram_channel_factory_->CreateChannel(
secure_channel_factory.cc 28 void SecureChannelFactory::CreateChannel(
32 channel_factory_->CreateChannel(
fake_datagram_socket.cc 128 void FakeDatagramChannelFactory::CreateChannel(
channel_multiplexer_unittest.cc 96 void CreateChannel(const std::string& name,
100 host_mux_->CreateChannel(name, base::Bind(
103 client_mux_->CreateChannel(name, base::Bind(
152 CreateChannel(kTestChannelName, &host_socket, &client_socket));
167 CreateChannel(kTestChannelName, &host_socket1_, &client_socket1_));
172 CreateChannel(kTestChannelName2, &host_socket2_, &client_socket2_));
194 CreateChannel(kTestChannelName, &host_socket1_, &client_socket1_));
199 CreateChannel(kTestChannelName2, &host_socket2_, &client_socket2_));
204 CreateChannel("test3", &host_socket3, &client_socket3));
209 CreateChannel("ch4", &host_socket4, &client_socket4))
    [all...]
fake_stream_socket.cc 246 void FakeStreamChannelFactory::CreateChannel(
jingle_session.cc 260 void JingleSession::CreateChannel(const std::string& name,
jingle_session_unittest.cc 265 void CreateChannel() {
266 client_session_->GetTransportChannelFactory()->CreateChannel(
269 host_session_->GetTransportChannelFactory()->CreateChannel(
388 ASSERT_NO_FATAL_FAILURE(CreateChannel());
457 client_session_->GetMultiplexedChannelFactory()->CreateChannel(
460 host_session_->GetMultiplexedChannelFactory()->CreateChannel(
488 ASSERT_NO_FATAL_FAILURE(CreateChannel());
503 client_session_->GetTransportChannelFactory()->CreateChannel(
506 host_session_->GetTransportChannelFactory()->CreateChannel(
529 client_session_->GetTransportChannelFactory()->CreateChannel(
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
channel_manager.cc 54 ChannelOwner ChannelManager::CreateChannel() {
58 ChannelOwner ChannelManager::CreateChannel(const Config& external_config) {
64 Channel::CreateChannel(channel, ++last_channel_id_, instance_id_, config);
  /external/chromium_org/chrome/service/
service_ipc_server.cc 23 CreateChannel();
27 void ServiceIPCServer::CreateChannel() {
67 CreateChannel();
  /external/chromium_org/ipc/
ipc_test_base.cc 54 void IPCTestBase::CreateChannel(IPC::Listener* listener) {
ipc_channel_proxy.cc 53 void ChannelProxy::Context::CreateChannel(scoped_ptr<ChannelFactory> factory) {
372 context_->CreateChannel(factory.Pass());
375 FROM_HERE, base::Bind(&Context::CreateChannel,
ipc_perftest_support.cc 242 CreateChannel(&listener);
322 scoped_ptr<Channel> PingPongTestClient::CreateChannel(
329 scoped_ptr<Channel> channel = CreateChannel(listener_.get());
  /external/chromium_org/mojo/embedder/
embedder.cc 40 // Helper for |CreateChannel...()|. (Note: May return null for some failures.)
129 ScopedMessagePipeHandle CreateChannel(
  /external/chromium_org/third_party/libjingle/source/talk/media/other/
linphonemediaengine.cc 104 VoiceMediaChannel* LinphoneMediaEngine::CreateChannel() {
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocatorsessionproxy_unittest.cc 118 TestSessionChannel* CreateChannel() {
137 TestSessionChannel* channel = CreateChannel();
145 TestSessionChannel* channel1 = CreateChannel();
transport_unittest.cc 77 channel_ = CreateChannel(1);
80 FakeTransportChannel* CreateChannel(int component) {
82 transport_->CreateChannel(component));
147 EXPECT_TRUE(transport_->CreateChannel(1) != NULL);
  /external/chromium_org/third_party/webrtc/video_engine/
vie_base_impl.cc 155 int ViEBaseImpl::CreateChannel(int& video_channel) { // NOLINT
156 return CreateChannel(video_channel, static_cast<const Config*>(NULL));
159 int ViEBaseImpl::CreateChannel(int& video_channel, // NOLINT
161 if (shared_data_.channel_manager()->CreateChannel(&video_channel,
171 int ViEBaseImpl::CreateChannel(int& video_channel, // NOLINT
173 return CreateChannel(video_channel, original_channel, true);
178 return CreateChannel(video_channel, original_channel, false);
356 int ViEBaseImpl::CreateChannel(int& video_channel, // NOLINT
364 if (shared_data_.channel_manager()->CreateChannel(&video_channel,
  /external/chromium_org/content/child/
child_thread.cc 228 scoped_ptr<IPC::SyncChannel> ChildThread::CreateChannel(bool use_mojo_channel) {
261 channel_ = CreateChannel(options.use_mojo_channel);
  /external/chromium_org/content/common/
child_process_host_impl.cc 165 std::string ChildProcessHostImpl::CreateChannel() {
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
voice_engine_jni.cc 92 int CreateChannel() {
93 int channel = base->CreateChannel();
212 return voe_data->CreateChannel();

Completed in 371 milliseconds

1 2