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

12

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCICECandidate.h43 @property(nonatomic, copy, readonly) NSString* sdp; variable
48 sdp:(NSString*)sdp;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DIceCandidate.java37 public final String sdp; field in class:IceCandidate
39 public IceCandidate(String sdpMid, int sdpMLineIndex, String sdp) { argument
42 this.sdp = sdp;
46 return sdpMid + ":" + sdpMLineIndex + ":" + sdp;
H A DSdpObserver.java33 public void onCreateSuccess(SessionDescription sdp); argument
H A DPeerConnection.java137 SdpObserver observer, SessionDescription sdp);
140 SdpObserver observer, SessionDescription sdp);
147 candidate.sdpMid, candidate.sdpMLineIndex, candidate.sdp);
136 setLocalDescription( SdpObserver observer, SessionDescription sdp) argument
139 setRemoteDescription( SdpObserver observer, SessionDescription sdp) argument
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCSessionDescription.cpp59 String sdp; local
60 DictionaryHelper::get(descriptionInitDict, "sdp", sdp);
62 return new RTCSessionDescription(WebRTCSessionDescription(type, sdp));
88 String RTCSessionDescription::sdp() function in class:blink::RTCSessionDescription
90 return m_webSessionDescription.sdp();
93 void RTCSessionDescription::setSdp(const String& sdp) argument
95 m_webSessionDescription.setSDP(sdp);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebRTCSessionDescription.cpp43 static PassRefPtr<WebRTCSessionDescriptionPrivate> create(const WebString& type, const WebString& sdp);
48 WebString sdp() { return m_sdp; } function in class:blink::FINAL
49 void setSdp(const WebString& sdp) { m_sdp = sdp; } argument
52 WebRTCSessionDescriptionPrivate(const WebString& type, const WebString& sdp);
58 PassRefPtr<WebRTCSessionDescriptionPrivate> WebRTCSessionDescriptionPrivate::create(const WebString& type, const WebString& sdp) argument
60 return adoptRef(new WebRTCSessionDescriptionPrivate(type, sdp));
63 WebRTCSessionDescriptionPrivate::WebRTCSessionDescriptionPrivate(const WebString& type, const WebString& sdp) argument
65 , m_sdp(sdp)
79 void WebRTCSessionDescription::initialize(const WebString& type, const WebString& sdp) argument
96 WebString WebRTCSessionDescription::sdp() const function in class:blink::WebRTCSessionDescription
102 setSDP(const WebString& sdp) argument
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebRTCSessionDescription.h69 BLINK_PLATFORM_EXPORT void initialize(const WebString& type, const WebString& sdp);
75 BLINK_PLATFORM_EXPORT WebString sdp() const;
79 WebRTCSessionDescription(WebString type, WebString sdp) argument
81 this->initialize(type, sdp);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Djsepicecandidate.cc39 const std::string& sdp) {
40 return CreateIceCandidate(sdp_mid, sdp_mline_index, sdp, NULL);
45 const std::string& sdp,
48 if (!jsep_ice->Initialize(sdp, error)) {
72 bool JsepIceCandidate::Initialize(const std::string& sdp, SdpParseError* err) { argument
73 return SdpDeserializeCandidate(sdp, this, err);
37 CreateIceCandidate(const std::string& sdp_mid, int sdp_mline_index, const std::string& sdp) argument
43 CreateIceCandidate(const std::string& sdp_mid, int sdp_mline_index, const std::string& sdp, SdpParseError* error) argument
H A Djsepsessiondescription_unittest.cc125 std::string sdp; local
126 EXPECT_TRUE(desc->ToString(&sdp));
127 EXPECT_FALSE(sdp.empty());
128 return sdp;
131 SessionDescriptionInterface* DeSerialize(const std::string& sdp) { argument
133 EXPECT_TRUE(desc->Initialize(sdp, NULL));
231 std::string sdp = Serialize(jsep_desc_.get()); local
233 scoped_ptr<SessionDescriptionInterface> parsed_jsep_desc(DeSerialize(sdp));
237 EXPECT_EQ(sdp, parsed_sdp);
243 std::string sdp local
[all...]
H A Djsepsessiondescription.cc76 const std::string& sdp) {
77 return CreateSessionDescription(type, sdp, NULL);
81 const std::string& sdp,
88 if (!jsep_desc->Initialize(sdp, error)) {
115 bool JsepSessionDescription::Initialize(const std::string& sdp, argument
117 return SdpDeserialize(sdp, this, error);
75 CreateSessionDescription(const std::string& type, const std::string& sdp) argument
80 CreateSessionDescription(const std::string& type, const std::string& sdp, SdpParseError* error) argument
H A Dpeerconnectionendtoend_unittest.cc56 std::string* sdp) {
59 while ((ssrc_pos = sdp->find(line_start, ssrc_pos)) !=
61 size_t end_ssrc = sdp->find(kSdpLineEnd, ssrc_pos);
62 sdp->erase(ssrc_pos, end_ssrc - ssrc_pos + strlen(kSdpLineEnd));
82 void UseExternalSdes(std::string* sdp) { argument
84 RemoveLinesFromSdp("a=crypto", sdp);
85 RemoveLinesFromSdp("a=fingerprint", sdp);
96 InjectAfter("a=mid:audio\r\n", kAudioSdes, sdp);
97 InjectAfter("a=mid:video\r\n", kVideoSdes, sdp);
98 InjectAfter("a=mid:data\r\n", kDataSdes, sdp);
55 RemoveLinesFromSdp(const std::string& line_start, std::string* sdp) argument
101 UseGice(std::string* sdp) argument
119 RemoveBundle(std::string* sdp) argument
190 ConvertToLegacySdp(std::string* sdp) argument
204 AddGiceCredsToCandidate(std::string* sdp) argument
[all...]
H A Dmediastreamsignaling_unittest.cc1118 std::string sdp; local
1119 desc->ToString(&sdp);
1124 &sdp);
1129 &sdp);
1132 sdp, NULL));
1166 std::string sdp; local
1167 desc->ToString(&sdp);
1169 kStreams[0], strlen(kStreams[0]), kStreams[1], strlen(kStreams[1]), &sdp);
1173 sdp, NULL));
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dpeerconnectiontestwrapper.cc123 std::string sdp; local
124 EXPECT_TRUE(candidate->ToString(&sdp));
125 // Give the user a chance to modify sdp for testing.
126 SignalOnIceCandidateCreated(&sdp);
128 sdp);
139 std::string sdp; local
140 EXPECT_TRUE(desc->ToString(&sdp));
143 << ": " << desc->type() << " sdp created: " << sdp;
145 // Give the user a chance to modify sdp fo
167 ReceiveOfferSdp(const std::string& sdp) argument
172 ReceiveAnswerSdp(const std::string& sdp) argument
176 SetLocalDescription(const std::string& type, const std::string& sdp) argument
179 << ": SetLocalDescription " << type << " " << sdp; local
188 SetRemoteDescription(const std::string& type, const std::string& sdp) argument
191 << ": SetRemoteDescription " << type << " " << sdp; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dconductor.cc46 const char kSessionDescriptionSdpName[] = "sdp";
168 std::string sdp; local
169 if (!candidate->ToString(&sdp)) {
173 jmessage[kCandidateSdpName] = sdp;
245 std::string sdp; local
246 if (!GetStringFromJsonObject(jmessage, kSessionDescriptionSdpName, &sdp)) {
251 webrtc::CreateSessionDescription(type, sdp));
267 std::string sdp; local
271 !GetStringFromJsonObject(jmessage, kCandidateSdpName, &sdp)) {
276 webrtc::CreateIceCandidate(sdp_mid, sdp_mlineindex, sdp));
482 std::string sdp; local
[all...]
/external/libnfc-nci/src/nfa/include/
H A Dnfa_p2p_api.h175 tNFA_P2P_SDP sdp; /* NFA_P2P_SDP_EVT */ member in union:__anon24063
/external/tcpdump/
H A Dprint-atalk.c98 register const struct atShortDDP *sdp; local
117 sdp = (const struct atShortDDP *)bp;
119 ataddr_string(0, lp->src), ddpskt_string(sdp->srcSkt));
121 ataddr_string(0, lp->dst), ddpskt_string(sdp->dstSkt));
125 ddp_print(bp, length, sdp->type, 0, lp->src, sdp->srcSkt);
/external/chromium_org/content/renderer/media/
H A Dpeer_connection_tracker.cc371 string sdp = base::UTF16ToUTF8(desc.sdp()); local
374 string value = "type: " + type + ", sdp: " + sdp;
H A Drtc_peer_connection_handler.cc123 std::string sdp; local
124 if (!native_desc->ToString(&sdp)) {
130 base::UTF8ToUTF16(sdp));
176 value = "type: " + desc->type() + ", sdp: " + value;
972 std::string sdp; local
973 if (!candidate->ToString(&sdp)) {
978 web_candidate.initialize(base::UTF8ToUTF16(sdp),
1025 std::string sdp = base::UTF16ToUTF8(description.sdp()); local
1028 dependency_factory_->CreateSessionDescription(type, sdp, erro
1031 << " Type: " << type << " SDP: " << sdp; local
[all...]
/external/chromium_org/content/renderer/media/webrtc/
H A Dmock_peer_connection_dependency_factory.cc351 const std::string& sdp)
353 sdp_(sdp) {
403 const std::string& sdp)
406 sdp_(sdp) {
508 const std::string& sdp,
510 return new MockSessionDescription(type, sdp);
517 const std::string& sdp) {
518 return new MockIceCandidate(sdp_mid, sdp_mline_index, sdp);
350 MockSessionDescription(const std::string& type, const std::string& sdp) argument
401 MockIceCandidate(const std::string& sdp_mid, int sdp_mline_index, const std::string& sdp) argument
506 CreateSessionDescription( const std::string& type, const std::string& sdp, webrtc::SdpParseError* error) argument
514 CreateIceCandidate( const std::string& sdp_mid, int sdp_mline_index, const std::string& sdp) argument
H A Dpeer_connection_dependency_factory.cc534 const std::string& sdp,
536 return webrtc::CreateSessionDescription(type, sdp, error);
543 const std::string& sdp) {
544 return webrtc::CreateIceCandidate(sdp_mid, sdp_mline_index, sdp);
532 CreateSessionDescription( const std::string& type, const std::string& sdp, webrtc::SdpParseError* error) argument
540 CreateIceCandidate( const std::string& sdp_mid, int sdp_mline_index, const std::string& sdp) argument
/external/chromium_org/remoting/host/
H A Dcast_extension_session.cc44 const char kWebRtcSessionDescSDP[] = "sdp";
220 LOG(ERROR) << "Failed to serialize sdp message.";
356 std::string sdp; local
357 if (!message_data->GetString(kWebRtcSessionDescSDP, &sdp)) {
358 LOG(ERROR) << "Invalid Cast Extension Message (missing webrtc sdp header).";
364 webrtc::CreateSessionDescription(webrtc_type, sdp, &error));
367 LOG(ERROR) << "Invalid Cast Extension Message (could not parse sdp).";
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/javatests/src/org/webrtc/
H A DPeerConnectionTest.java390 private SessionDescription sdp = null; field in class:PeerConnectionTest.SdpObserverLatch
397 public void onCreateSuccess(SessionDescription sdp) { argument
398 this.sdp = sdp;
433 return sdp;
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.cc488 ServiceDescriptorProto sdp; local
489 PrintSerializedPbInterval(descriptor, sdp);
/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.cc458 ServiceDescriptorProto sdp; local
459 PrintSerializedPbInterval(descriptor, sdp);
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_hl.h212 tBTA_HL_SDP sdp; member in struct:__anon1032

Completed in 1204 milliseconds

12