Searched defs:sdp (Results 26 - 31 of 31) sorted by relevance

12

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
H A Dpeerconnection_jni.cc446 std::string sdp; variable
447 CHECK(candidate->ToString(&sdp), "got so far: " << sdp);
453 ScopedLocalRef<jstring> j_sdp(jni(), JavaStringFromStdString(jni(), sdp)); variable
673 std::string sdp; local
674 CHECK(desc->ToString(&sdp), "got so far: " << sdp);
675 ScopedLocalRef<jstring> j_description(jni, JavaStringFromStdString(jni, sdp));
1301 const SessionDescriptionInterface* sdp = local
1303 return sdp
1307 const SessionDescriptionInterface* sdp = local
1406 std::string sdp = JavaToStdString(jni, j_candidate_sdp); local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dpeerconnection_unittest.cc96 std::string* sdp) {
99 while ((ssrc_pos = sdp->find(line_start, ssrc_pos)) !=
101 size_t end_ssrc = sdp->find(kSdpLineEnd, ssrc_pos);
102 sdp->erase(ssrc_pos, end_ssrc - ssrc_pos + strlen(kSdpLineEnd));
591 std::string sdp; local
592 EXPECT_TRUE(offer->ToString(&sdp));
595 webrtc::SessionDescriptionInterface::kOffer, sdp);
725 std::string sdp; local
726 EXPECT_TRUE(answer->ToString(&sdp));
730 webrtc::SessionDescriptionInterface::kAnswer, sdp);
95 RemoveLinesFromSdp(const std::string& line_start, std::string* sdp) argument
799 FilterIncomingSdpMessage(std::string* sdp) argument
[all...]
H A Dwebrtcsdp_unittest.cc126 // Reference sdp string
392 std::string sdp = kSdpFullString; local
393 Replace(search, replace, &sdp);
395 bool ret = webrtc::SdpDeserialize(sdp, &desc, &error);
836 // Disable the ice-ufrag and ice-pwd in given |sdp| message by replacing
838 bool RemoveCandidateUfragPwd(std::string* sdp) { argument
844 ice_ufragx, strlen(ice_ufragx), sdp);
846 ice_pwdx, strlen(ice_pwdx), sdp);
1104 std::string sdp = local
1131 sdp
1167 std::string sdp = local
1665 std::string sdp = kSdpOneCandidate; local
[all...]
H A Dwebrtcsession_unittest.cc378 void VerifyCryptoParams(const cricket::SessionDescription* sdp) { argument
380 const cricket::ContentInfo* content = cricket::GetFirstAudioContent(sdp);
393 content = cricket::GetFirstVideoContent(sdp);
407 void VerifyNoCryptoParams(const cricket::SessionDescription* sdp, bool dtls) { argument
408 const cricket::ContentInfo* content = cricket::GetFirstAudioContent(sdp);
416 content = cricket::GetFirstVideoContent(sdp);
448 void VerifyFingerprintStatus(const cricket::SessionDescription* sdp, argument
450 const TransportInfo* audio = sdp->GetTransportInfoByName("audio");
457 const TransportInfo* video = sdp->GetTransportInfoByName("video");
673 std::string sdp; local
749 std::string sdp; local
1477 std::string sdp; local
2142 std::string sdp; local
2178 std::string sdp; local
2257 std::string sdp; local
[all...]
H A Dwebrtcsdp.cc599 // If there's no msid and there's mslabel, we consider this is a sdp from
776 std::string sdp = SdpSerializeSessionDescription(jdesc); local
782 while (GetLine(sdp, &pos, &line)) {
795 // Copy old line to new sdp without change.
799 sdp = sdp_with_candidates;
801 return sdp;
1822 // RFC 5888 and draft-holmberg-mmusic-sdp-bundle-negotiation-00
/external/bluetooth/bluedroid/bta/hl/
H A Dbta_hl_int.h506 tBTA_HL_SDP sdp; member in struct:__anon618
610 /* sdp */

Completed in 206 milliseconds

12