Searched defs:sdesc (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
H A Dsecuretunnelsessionclient.cc136 bool FindSecureTunnelContent(const cricket::SessionDescription* sdesc, argument
139 const ContentInfo* cinfo = sdesc->FirstContentByType(NS_SECURE_TUNNEL);
274 SessionDescription* sdesc = new SessionDescription(); local
275 sdesc->AddContent(content_name, NS_SECURE_TUNNEL, content);
276 return sdesc;
H A Dtunnelsessionclient.cc256 SessionDescription* sdesc = new SessionDescription(); local
257 sdesc->AddContent(content_name, NS_TUNNEL, content);
258 return sdesc;
261 bool FindTunnelContent(const cricket::SessionDescription* sdesc, argument
264 const ContentInfo* cinfo = sdesc->FirstContentByType(NS_TUNNEL);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsession.cc174 // Forces |sdesc->crypto_required| to the appropriate state based on the
179 SessionDescription* sdesc) {
180 if (!sdesc) {
186 for (cricket::ContentInfos::iterator iter = sdesc->contents().begin();
187 iter != sdesc->contents().end(); ++iter) {
1621 const SessionDescriptionInterface* sdesc,
1628 if (!sdesc || !sdesc->description()) {
1632 type = sdesc->type();
1633 Action action = GetAction(sdesc
178 UpdateSessionDescriptionSecurePolicy(cricket::CryptoType type, SessionDescription* sdesc) argument
1620 ValidateSessionDescription( const SessionDescriptionInterface* sdesc, cricket::ContentSource source, std::string* err_desc) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dsession.cc433 void BaseSession::set_local_description(const SessionDescription* sdesc) { argument
435 if (sdesc != local_description_.get())
436 local_description_.reset(sdesc);
439 void BaseSession::set_remote_description(SessionDescription* sdesc) { argument
441 if (sdesc != remote_description_)
442 remote_description_.reset(sdesc);
475 const SessionDescription* sdesc,
486 sdesc, iter->second->content_name(), &tdesc);
501 const SessionDescription* sdesc,
512 sdesc, ite
474 PushdownLocalTransportDescription( const SessionDescription* sdesc, ContentAction action, std::string* error_desc) argument
500 PushdownRemoteTransportDescription( const SessionDescription* sdesc, ContentAction action, std::string* error_desc) argument
959 Initiate(const std::string& to, const SessionDescription* sdesc) argument
991 Accept(const SessionDescription* sdesc) argument
1597 SendInitiateMessage(const SessionDescription* sdesc, SessionError* error) argument
1615 SendAcceptMessage(const SessionDescription* sdesc, SessionError* error) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dchannel_unittest.cc473 cricket::SessionDescription* sdesc = new cricket::SessionDescription(); local
476 sdesc->AddContent("DUMMY_CONTENT_NAME",
478 return sdesc;
1590 cricket::SessionDescription* sdesc = CreateSessionDescriptionWithStream(1); local
1591 session1_.set_local_description(sdesc);
1599 sdesc = CreateSessionDescriptionWithStream(2);
1600 session1_.set_local_description(sdesc);
1612 cricket::SessionDescription* sdesc = CreateSessionDescriptionWithStream(1); local
1613 session1_.set_remote_description(sdesc);
1620 sdesc
1632 cricket::SessionDescription* sdesc = CreateSessionDescriptionWithStream(1); local
1664 cricket::SessionDescription* sdesc = CreateSessionDescriptionWithStream(1); local
[all...]
H A Dmediasession.cc293 static void GetCurrentStreamParams(const SessionDescription* sdesc, argument
295 if (!sdesc)
298 const ContentInfos& contents = sdesc->contents();
516 // Updates the transport infos of the |sdesc| according to the given
521 SessionDescription* sdesc) {
523 if (!sdesc || !bundle_group.FirstContentName()) {
530 sdesc->GetTransportInfoByName(selected_content_name);
541 sdesc->transport_infos().begin();
542 it != sdesc->transport_infos().end(); ++it) {
552 // Gets the CryptoParamsVec of the given |content_name| from |sdesc|, an
520 UpdateTransportInfoForBundle(const ContentGroup& bundle_group, SessionDescription* sdesc) argument
554 GetCryptosByName(const SessionDescription* sdesc, const std::string& content_name, CryptoParamsVec* cryptos) argument
602 IsRtpContent(SessionDescription* sdesc, const std::string& content_name) argument
623 UpdateCryptoParamsForBundle(const ContentGroup& bundle_group, SessionDescription* sdesc) argument
1787 GetFirstMediaContent(const SessionDescription* sdesc, MediaType media_type) argument
1795 GetFirstAudioContent(const SessionDescription* sdesc) argument
1799 GetFirstVideoContent(const SessionDescription* sdesc) argument
1803 GetFirstDataContent(const SessionDescription* sdesc) argument
1807 GetFirstMediaContentDescription( const SessionDescription* sdesc, MediaType media_type) argument
1814 GetFirstAudioContentDescription( const SessionDescription* sdesc) argument
1820 GetFirstVideoContentDescription( const SessionDescription* sdesc) argument
1826 GetFirstDataContentDescription( const SessionDescription* sdesc) argument
[all...]
H A Dmediasessionclient_unittest.cc1558 const cricket::SessionDescription* sdesc) {
1560 cricket::GetFirstAudioContent(sdesc);
1567 const cricket::SessionDescription* sdesc) {
1569 cricket::GetFirstVideoContent(sdesc);
1617 void CheckRtcpFb(const cricket::SessionDescription* sdesc) { argument
1619 GetFirstAudioContentDescription(sdesc));
1622 GetFirstVideoContentDescription(sdesc));
1625 GetFirstDataContentDescription(sdesc));
1629 const cricket::SessionDescription* sdesc) {
1631 GetFirstVideoContentDescription(sdesc);
1557 GetFirstAudioContentDescription( const cricket::SessionDescription* sdesc) argument
1566 GetFirstVideoContentDescription( const cricket::SessionDescription* sdesc) argument
1628 CheckVideoBandwidth(int expected_bandwidth, const cricket::SessionDescription* sdesc) argument
1637 CheckVideoRtcpMux(bool expected_video_rtcp_mux, const cricket::SessionDescription* sdesc) argument
1682 CheckDataRtcpMux(bool expected_data_rtcp_mux, const cricket::SessionDescription* sdesc) argument
[all...]
H A Dchannel.cc1451 const SessionDescription* sdesc) {
1452 return GetFirstAudioContent(sdesc);
1802 const SessionDescription* sdesc) {
1803 return GetFirstVideoContent(sdesc);
2148 const SessionDescription* sdesc) {
2149 return GetFirstDataContent(sdesc);
1450 GetFirstContent( const SessionDescription* sdesc) argument
1801 GetFirstContent( const SessionDescription* sdesc) argument
2147 GetFirstContent( const SessionDescription* sdesc) argument

Completed in 1148 milliseconds