Home
last modified time | relevance | path

Searched refs:content_name (Results 1 – 13 of 13) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/session/tunnel/
Dsecuretunnelsessionclient.cc147 std::string content_name; in OnIncomingTunnel() local
150 &content_name, &content)) { in OnIncomingTunnel()
269 const std::string& content_name, const ContentDescription* content) { in NewSecureTunnelSessionDescription() argument
271 sdesc->AddContent(content_name, NS_SECURE_TUNNEL, content); in NewSecureTunnelSessionDescription()
287 std::string content_name; in CreateAnswer() local
289 if (!FindSecureTunnelContent(offer, &content_name, &offer_tunnel)) in CreateAnswer()
297 content_name, in CreateAnswer()
348 std::string content_name; in OnAccept() local
351 &content_name, &remote_tunnel)) { in OnAccept()
379 VERIFY(channel_->Connect(content_name, "tcp")); in OnAccept()
Dtunnelsessionclient.cc247 const std::string& content_name, const ContentDescription* content) { in NewTunnelSessionDescription() argument
249 sdesc->AddContent(content_name, NS_TUNNEL, content); in NewTunnelSessionDescription()
268 std::string content_name; in OnIncomingTunnel() local
271 &content_name, &content)) { in OnIncomingTunnel()
287 std::string content_name; in CreateAnswer() local
289 if (!FindTunnelContent(offer, &content_name, &offer_tunnel)) in CreateAnswer()
293 content_name, new TunnelContentDescription(offer_tunnel->description)); in CreateAnswer()
Dpseudotcpchannel.cc121 bool PseudoTcpChannel::Connect(const std::string& content_name, in Connect() argument
131 content_name_ = content_name; in Connect()
132 channel_ = session_->CreateChannel(content_name, channel_name); in Connect()
Dpseudotcpchannel.h73 bool Connect(const std::string& content_name,
/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dsession.h81 TransportProxy(const std::string& content_name, Transport* transport) in TransportProxy() argument
82 : content_name_(content_name), in TransportProxy()
88 std::string content_name() const { return content_name_; } in content_name() function
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 …]
Dsession.cc258 Transport* Session::GetTransport(const std::string& content_name) { in GetTransport() argument
259 TransportProxy* transproxy = GetTransportProxy(content_name); in GetTransport()
395 TransportProxy* Session::GetTransportProxy(const std::string& content_name) { in GetTransportProxy() argument
396 TransportMap::iterator iter = transports_.find(content_name); in GetTransportProxy()
422 TransportProxy* transproxy = GetTransportProxy(tinfo->content_name); in OnRemoteCandidates()
424 return BadParse("Unknown content name: " + tinfo->content_name, error); in OnRemoteCandidates()
442 cand->name() + " for content: "+ tinfo->content_name, in OnRemoteCandidates()
454 const std::string& content_name) { in GetOrCreateTransportProxy() argument
455 TransportProxy* transproxy = GetTransportProxy(content_name); in GetOrCreateTransportProxy()
477 transproxy = new TransportProxy(content_name, transport); in GetOrCreateTransportProxy()
[all …]
Dsessionmessages.h108 TransportInfo(const std::string& content_name, in TransportInfo()
111 : content_name(content_name), in TransportInfo()
115 std::string content_name; member
Dsessionmessages.cc364 std::string content_name; in ParseJingleTransportInfos() local
366 &content_name, error)) in ParseJingleTransportInfos()
369 const ContentInfo* content = FindContentInfoByName(contents, content_name); in ParseJingleTransportInfos()
371 return BadParse("Unknown content name: " + content_name, error); in ParseJingleTransportInfos()
455 WriteJingleContentPair(tinfo->content_name, pair_elems, elems); in WriteJingleTransportInfos()
549 std::string content_name; in ParseJingleContentInfos() local
551 &content_name, error)) in ParseJingleContentInfos()
559 if (!ParseContentInfo(PROTOCOL_JINGLE, content_name, content_type, in ParseJingleContentInfos()
623 const TransportInfos& tinfos, const std::string& content_name) { in GetTransportInfoByContentName() argument
626 if (content_name == tinfo->content_name) { in GetTransportInfoByContentName()
/external/chromium/third_party/libjingle/source/talk/session/phone/
Dchannelmanager.cc65 CreationParams(BaseSession* session, const std::string& content_name, in CreationParams()
68 content_name(content_name), in CreationParams()
73 std::string content_name; member
294 BaseSession* session, const std::string& content_name, bool rtcp) { in CreateVoiceChannel() argument
295 CreationParams params(session, content_name, rtcp, NULL); in CreateVoiceChannel()
300 BaseSession* session, const std::string& content_name, bool rtcp) { in CreateVoiceChannel_w() argument
311 session, content_name, rtcp); in CreateVoiceChannel_w()
338 BaseSession* session, const std::string& content_name, bool rtcp, in CreateVideoChannel() argument
340 CreationParams params(session, content_name, rtcp, voice_channel); in CreateVideoChannel()
345 BaseSession* session, const std::string& content_name, bool rtcp, in CreateVideoChannel_w() argument
[all …]
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,
Dchannel.cc92 const std::string& content_name, in BaseChannel() argument
100 content_name_(content_name), in BaseChannel()
618 const std::string& content_name, in VoiceChannel() argument
620 : BaseChannel(thread, media_engine, media_channel, session, content_name, in VoiceChannel()
621 session->CreateChannel(content_name, "rtp")), in VoiceChannel()
624 set_rtcp_transport_channel(session->CreateChannel(content_name, "rtcp")); in VoiceChannel()
941 const std::string& content_name, in VideoChannel() argument
944 : BaseChannel(thread, media_engine, media_channel, session, content_name, in VideoChannel()
945 session->CreateChannel(content_name, "video_rtp")), in VideoChannel()
949 session->CreateChannel(content_name, "video_rtcp")); in VideoChannel()
Dchannel.h85 const std::string& content_name,
91 const std::string& content_name() { return content_name_; } in content_name() function
258 const std::string& content_name, bool rtcp);
369 const std::string& content_name, bool rtcp,
/external/webkit/PerformanceTests/Parser/resources/
Dfinal-url-en76813 http://www.ufcu.org/browse.php?content_name=parent_toysafety