Searched refs:sdp (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCSessionDescriptionCallback.idl32 void handleEvent(RTCSessionDescription sdp);
H A DRTCSessionDescription.idl37 attribute DOMString? sdp;
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);
H A DRTCSessionDescription.h52 String 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/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/libjingle/source/talk/app/webrtc/objc/
H A DRTCICECandidate.mm38 @synthesize sdp = _sdp;
42 sdp:(NSString*)sdp {
43 if (!sdpMid || !sdp) {
50 _sdp = [sdp copy];
59 self.sdp];
68 std::string sdp;
69 if (candidate->ToString(&sdp)) {
72 _sdp = @(sdp.c_str());
83 [self.sdpMid UTF8String], self.sdpMLineIndex, [self.sdp UTF8Strin
[all...]
H A DRTCSessionDescription.mm39 - (id)initWithType:(NSString*)type sdp:(NSString*)sdp {
40 if (!type || !sdp) {
45 _description = sdp;
64 std::string sdp;
65 if (!sessionDescription->ToString(&sdp)) {
69 _description = @(sdp.c_str());
/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;
H A DRTCSessionDescription.h41 - (id)initWithType:(NSString *)type sdp:(NSString *)sdp;
H A DRTCSessionDescriptionDelegate.h42 didCreateSessionDescription:(RTCSessionDescription *)sdp
/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/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...]
H A Dpeerconnectiontestwrapper.h82 void ReceiveOfferSdp(const std::string& sdp);
83 void ReceiveAnswerSdp(const std::string& sdp);
104 void SetLocalDescription(const std::string& type, const std::string& sdp);
105 void SetRemoteDescription(const std::string& type, const std::string& 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 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 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 Djsep.h48 // The sdp line that causes the error.
73 // Returns NULL if the sdp string can't be parsed.
77 const std::string& sdp);
82 const std::string& sdp,
130 // Returns NULL if the sdp string can't be parsed or the type is unsupported.
133 const std::string& sdp);
137 const std::string& sdp,
H A Dpeerconnectioninterface_unittest.cc109 void SetSsrcToZero(std::string* sdp) { argument
113 while ((ssrc_pos = sdp->find(kSdpSsrcAtribute, ssrc_pos)) !=
115 size_t end_ssrc = sdp->find(" ", ssrc_pos);
116 sdp->replace(ssrc_pos, end_ssrc - ssrc_pos, kSdpSsrcAtributeZero);
186 std::string sdp; local
187 EXPECT_TRUE(candidate->ToString(&sdp));
188 EXPECT_LT(0u, sdp.size());
190 candidate->sdp_mline_index(), sdp, NULL));
443 std::string sdp; local
444 EXPECT_TRUE(offer->ToString(&sdp));
463 std::string sdp; local
476 std::string sdp; local
487 std::string sdp; local
502 std::string sdp; local
552 std::string sdp; local
898 std::string sdp; local
1077 std::string sdp; local
1205 std::string sdp; local
[all...]
/external/chromium_org/third_party/webrtc/tools/loopback_test/
H A Dloopback_test.js61 desc.sdp = desc.sdp.replace(/(m=video 1 [^\r]+)(116 117)(\r\n)/g,
63 desc.sdp = desc.sdp.replace(/a=rtpmap:116 red\/90000\r\n/g, '');
64 desc.sdp = desc.sdp.replace(/a=rtpmap:117 ulpfec\/90000\r\n/g, '');
78 desc.sdp = desc.sdp.replace(
178 trace("Offer: " + desc.sdp);
188 trace("Answer: " + desc.sdp);
[all...]
/external/bluetooth/bluedroid/stack/
H A DAndroid.mk17 $(LOCAL_PATH)/sdp \
122 ./sdp/sdp_server.c \
123 ./sdp/sdp_main.c \
124 ./sdp/sdp_db.c \
125 ./sdp/sdp_utils.c \
126 ./sdp/sdp_api.c \
127 ./sdp/sdp_discovery.c \
/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...]

Completed in 2574 milliseconds

123