HomeSort by relevance Sort by last modified time
    Searched defs:CreateChannel (Results 1 - 25 of 31) 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() {
hybridvideoengine.h 169 HybridVideoMediaChannel* CreateChannel(VoiceMediaChannel* channel) {
171 video1_.CreateChannel(channel));
177 video2_.CreateChannel(channel));
rtpdataengine.cc 61 DataMediaChannel* RtpDataEngine::CreateChannel(
rtpdataengine_unittest.cc 103 cricket::RtpDataMediaChannel* CreateChannel() {
104 return CreateChannel(dme_.get());
107 cricket::RtpDataMediaChannel* CreateChannel(cricket::RtpDataEngine* dme) {
109 static_cast<cricket::RtpDataMediaChannel*>(dme->CreateChannel(
169 talk_base::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
197 talk_base::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
212 talk_base::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
227 talk_base::scoped_ptr<cricket::RtpDataMediaChannel> dmc(CreateChannel());
306 CreateChannel(dme1.get()));
310 CreateChannel(dme2.get()))
    [all...]
mediaengine.h 102 virtual VoiceMediaChannel *CreateChannel() = 0;
203 virtual VoiceMediaChannel *CreateChannel() {
204 return voice_.CreateChannel();
207 return video_.CreateChannel(channel);
300 VoiceMediaChannel* CreateChannel() {
343 VideoMediaChannel* CreateChannel(
376 virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0;
  /external/chromium_org/chrome/service/
service_ipc_server.cc 22 CreateChannel();
26 void ServiceIPCServer::CreateChannel() {
66 CreateChannel();
  /external/chromium_org/ipc/
ipc_test_base.cc 50 void IPCTestBase::CreateChannel(IPC::Listener* listener) {
ipc_channel_proxy.cc 64 void ChannelProxy::Context::CreateChannel(const IPC::ChannelHandle& handle,
332 context_->CreateChannel(channel_handle, mode);
335 FROM_HERE, base::Bind(&Context::CreateChannel, context_.get(),
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport_unittest.cc 70 channel_ = CreateChannel(1);
73 FakeTransportChannel* CreateChannel(int component) {
75 transport_->CreateChannel(component));
132 EXPECT_TRUE(transport_->CreateChannel(1) != NULL);
portallocatorsessionproxy_unittest.cc 115 TestSessionChannel* CreateChannel() {
134 TestSessionChannel* channel = CreateChannel();
142 TestSessionChannel* channel1 = CreateChannel();
fakesession.h 401 virtual TransportChannel* CreateChannel(
408 return BaseSession::CreateChannel(content_name, channel_name, component);
transport.cc 163 TransportChannelImpl* Transport::CreateChannel(int component) {
session.cc 71 TransportChannel* TransportProxy::CreateChannel(
196 impl = transport_->get()->CreateChannel(component);
228 target->transport_->get()->CreateChannel(iter->first));
440 TransportChannel* BaseSession::CreateChannel(const std::string& content_name,
447 return transproxy->CreateChannel(channel_name, component);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
filemediaengine.cc 59 VoiceMediaChannel* FileMediaEngine::CreateChannel() {
mediaengine.h 100 virtual VoiceMediaChannel *CreateChannel() = 0;
177 virtual VoiceMediaChannel *CreateChannel() {
178 return voice_.CreateChannel();
181 return video_.CreateChannel(channel);
286 VoiceMediaChannel* CreateChannel() {
315 VideoMediaChannel* CreateChannel(VoiceMediaChannel* voice_media_channel) {
  /external/chromium_org/content/common/
child_process_host_impl.cc 160 std::string ChildProcessHostImpl::CreateChannel() {
  /external/chromium_org/remoting/protocol/
channel_multiplexer_unittest.cc 92 void CreateChannel(const std::string& name,
148 CreateChannel(kTestChannelName, &host_socket, &client_socket));
163 CreateChannel(kTestChannelName, &host_socket1_, &client_socket1_));
168 CreateChannel(kTestChannelName2, &host_socket2_, &client_socket2_));
190 CreateChannel(kTestChannelName, &host_socket1_, &client_socket1_));
195 CreateChannel(kTestChannelName2, &host_socket2_, &client_socket2_));
200 CreateChannel("test3", &host_socket3, &client_socket3));
205 CreateChannel("ch4", &host_socket4, &client_socket4));
235 CreateChannel(kTestChannelName, &host_socket1_, &client_socket1_));
240 CreateChannel(kTestChannelName2, &host_socket2_, &client_socket2_))
    [all...]
jingle_session_unittest.cc 231 void CreateChannel() {
354 ASSERT_NO_FATAL_FAILURE(CreateChannel());
400 ASSERT_NO_FATAL_FAILURE(CreateChannel());
  /external/chromium_org/third_party/libjingle/source/talk/media/other/
linphonemediaengine.cc 104 VoiceMediaChannel* LinphoneMediaEngine::CreateChannel() {
  /external/chromium_org/content/test/
webrtc_audio_device_test.cc 231 CreateChannel(thread_name);
246 void MAYBE_WebRTCAudioDeviceTest::CreateChannel(const char* name) {
  /external/chromium_org/third_party/libjingle/source/talk/media/sctp/
sctpdataengine.cc 207 DataMediaChannel* SctpDataEngine::CreateChannel(
sctpdataengine_unittest.cc 170 chan1_.reset(CreateChannel(net1_.get(), recv1_.get()));
172 chan2_.reset(CreateChannel(net2_.get(), recv2_.get()));
201 cricket::SctpDataMediaChannel* CreateChannel(
204 static_cast<cricket::SctpDataMediaChannel*>(engine_->CreateChannel(
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transport.cc 96 TransportChannelImpl* Transport::CreateChannel(
session.cc 78 TransportChannel* TransportProxy::CreateChannel(
143 impl = transport_->CreateChannel(name, content_type);
516 TransportChannel* Session::CreateChannel(const std::string& content_name,
522 return transproxy->CreateChannel(channel_name, content_type_);
    [all...]

Completed in 455 milliseconds

1 2