Searched refs:content_name (Results 1 - 12 of 12) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/session/tunnel/
H A Dsecuretunnelsessionclient.cc147 std::string content_name; local
150 &content_name, &content)) {
269 const std::string& content_name, const ContentDescription* content) {
271 sdesc->AddContent(content_name, NS_SECURE_TUNNEL, content);
287 std::string content_name; local
289 if (!FindSecureTunnelContent(offer, &content_name, &offer_tunnel))
297 content_name,
348 std::string content_name; local
351 &content_name, &remote_tunnel)) {
379 VERIFY(channel_->Connect(content_name, "tc
268 NewSecureTunnelSessionDescription( const std::string& content_name, const ContentDescription* content) argument
[all...]
H A Dtunnelsessionclient.cc247 const std::string& content_name, const ContentDescription* content) {
249 sdesc->AddContent(content_name, NS_TUNNEL, content);
268 std::string content_name; local
271 &content_name, &content)) {
287 std::string content_name; local
289 if (!FindTunnelContent(offer, &content_name, &offer_tunnel))
293 content_name, new TunnelContentDescription(offer_tunnel->description));
246 NewTunnelSessionDescription( const std::string& content_name, const ContentDescription* content) argument
H A Dpseudotcpchannel.h73 bool Connect(const std::string& content_name,
H A Dpseudotcpchannel.cc121 bool PseudoTcpChannel::Connect(const std::string& content_name, argument
131 content_name_ = content_name;
132 channel_ = session_->CreateChannel(content_name, channel_name);
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dsession.h81 TransportProxy(const std::string& content_name, Transport* transport) argument
82 : content_name_(content_name),
88 std::string content_name() const { return content_name_; } function in class:cricket::TransportProxy
195 virtual TransportChannel* CreateChannel(const std::string& content_name,
199 virtual TransportChannel* GetChannel(const std::string& content_name,
206 virtual void DestroyChannel(const std::string& content_name,
327 Transport* GetTransport(const std::string& content_name);
355 virtual TransportChannel* CreateChannel(const std::string& content_name,
359 virtual TransportChannel* GetChannel(const std::string& content_name,
363 virtual void DestroyChannel(const std::string& content_name,
[all...]
H A Dsession.cc258 Transport* Session::GetTransport(const std::string& content_name) { argument
259 TransportProxy* transproxy = GetTransportProxy(content_name);
395 TransportProxy* Session::GetTransportProxy(const std::string& content_name) { argument
396 TransportMap::iterator iter = transports_.find(content_name);
422 TransportProxy* transproxy = GetTransportProxy(tinfo->content_name);
424 return BadParse("Unknown content name: " + tinfo->content_name, error);
442 cand->name() + " for content: "+ tinfo->content_name,
454 const std::string& content_name) {
455 TransportProxy* transproxy = GetTransportProxy(content_name);
477 transproxy = new TransportProxy(content_name, transpor
453 GetOrCreateTransportProxy( const std::string& content_name) argument
516 CreateChannel(const std::string& content_name, const std::string& channel_name) argument
525 GetChannel(const std::string& content_name, const std::string& channel_name) argument
534 DestroyChannel(const std::string& content_name, const std::string& channel_name) argument
[all...]
H A Dsessionmessages.h108 TransportInfo(const std::string& content_name, argument
111 : content_name(content_name),
115 std::string content_name; member in struct:cricket::TransportInfo
H A Dsessionmessages.cc364 std::string content_name; local
366 &content_name, error))
369 const ContentInfo* content = FindContentInfoByName(contents, content_name);
371 return BadParse("Unknown content name: " + content_name, error);
455 WriteJingleContentPair(tinfo->content_name, pair_elems, elems);
549 std::string content_name; local
551 &content_name, error))
559 if (!ParseContentInfo(PROTOCOL_JINGLE, content_name, content_type,
623 const TransportInfos& tinfos, const std::string& content_name) {
626 if (content_name
622 GetTransportInfoByContentName( const TransportInfos& tinfos, const std::string& content_name) argument
[all...]
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dchannelmanager.h106 BaseSession* session, const std::string& content_name, bool rtcp);
112 BaseSession* session, const std::string& content_name, bool rtcp,
167 BaseSession* session, const std::string& content_name, bool rtcp);
170 BaseSession* session, const std::string& content_name, bool rtcp,
H A Dchannelmanager.cc65 CreationParams(BaseSession* session, const std::string& content_name, argument
68 content_name(content_name),
73 std::string content_name; member in struct:cricket::CreationParams
294 BaseSession* session, const std::string& content_name, bool rtcp) {
295 CreationParams params(session, content_name, rtcp, NULL);
300 BaseSession* session, const std::string& content_name, bool rtcp) {
311 session, content_name, rtcp);
338 BaseSession* session, const std::string& content_name, bool rtcp,
340 CreationParams params(session, content_name, rtc
293 CreateVoiceChannel( BaseSession* session, const std::string& content_name, bool rtcp) argument
299 CreateVoiceChannel_w( BaseSession* session, const std::string& content_name, bool rtcp) argument
337 CreateVideoChannel( BaseSession* session, const std::string& content_name, bool rtcp, VoiceChannel* voice_channel) argument
344 CreateVideoChannel_w( BaseSession* session, const std::string& content_name, bool rtcp, VoiceChannel* voice_channel) argument
[all...]
H A Dchannel.cc92 const std::string& content_name,
100 content_name_(content_name),
618 const std::string& content_name,
620 : BaseChannel(thread, media_engine, media_channel, session, content_name,
621 session->CreateChannel(content_name, "rtp")),
624 set_rtcp_transport_channel(session->CreateChannel(content_name, "rtcp"));
941 const std::string& content_name,
944 : BaseChannel(thread, media_engine, media_channel, session, content_name,
945 session->CreateChannel(content_name, "video_rtp")),
949 session->CreateChannel(content_name, "video_rtc
90 BaseChannel(talk_base::Thread* thread, MediaEngine* media_engine, MediaChannel* media_channel, BaseSession* session, const std::string& content_name, TransportChannel* transport_channel) argument
614 VoiceChannel(talk_base::Thread* thread, MediaEngine* media_engine, VoiceMediaChannel* media_channel, BaseSession* session, const std::string& content_name, bool rtcp) argument
937 VideoChannel(talk_base::Thread* thread, MediaEngine* media_engine, VideoMediaChannel* media_channel, BaseSession* session, const std::string& content_name, bool rtcp, VoiceChannel* voice_channel) argument
[all...]
H A Dchannel.h85 const std::string& content_name,
91 const std::string& content_name() { return content_name_; } function in class:cricket::BaseChannel
258 const std::string& content_name, bool rtcp);
369 const std::string& content_name, bool rtcp,

Completed in 304 milliseconds