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

12

/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCICECandidate.h43 @property(nonatomic, copy, readonly) NSString* sdp; variable
48 sdp:(NSString*)sdp;
/external/webrtc/webrtc/api/objc/
H A DRTCIceCandidate.h30 @property(nonatomic, readonly) NSString *sdp; variable
37 - (instancetype)initWithSdp:(NSString *)sdp
H A DRTCSessionDescription.h31 @property(nonatomic, readonly) NSString *sdp; variable
36 - (instancetype)initWithType:(RTCSdpType)type sdp:(NSString *)sdp
/external/webrtc/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.java201 SdpObserver observer, SessionDescription sdp);
204 SdpObserver observer, SessionDescription sdp);
210 candidate.sdpMid, candidate.sdpMLineIndex, candidate.sdp);
200 setLocalDescription( SdpObserver observer, SessionDescription sdp) argument
203 setRemoteDescription( SdpObserver observer, SessionDescription sdp) argument
/external/curl/tests/libtest/
H A Dlib568.c46 int sdp; local
79 sdp = open("log/file568.txt", O_RDONLY);
80 fstat(sdp, &file_info);
81 close(sdp);
/external/syslinux/core/fs/lib/
H A Dsearchconfig.c22 const char *sd, **sdp; local
25 for (sdp = search_directories; (sd = *sdp); sdp++) {
/external/webrtc/talk/app/webrtc/
H A Djsepicecandidate.cc39 const std::string& sdp,
42 if (!jsep_ice->Initialize(sdp, error)) {
66 bool JsepIceCandidate::Initialize(const std::string& sdp, SdpParseError* err) { argument
67 return SdpDeserializeCandidate(sdp, this, err);
37 CreateIceCandidate(const std::string& sdp_mid, int sdp_mline_index, const std::string& sdp, SdpParseError* error) argument
H A Djsepsessiondescription_unittest.cc114 std::string sdp; local
115 EXPECT_TRUE(desc->ToString(&sdp));
116 EXPECT_FALSE(sdp.empty());
117 return sdp;
120 SessionDescriptionInterface* DeSerialize(const std::string& sdp) { argument
122 EXPECT_TRUE(desc->Initialize(sdp, NULL));
220 std::string sdp = Serialize(jsep_desc_.get()); local
222 scoped_ptr<SessionDescriptionInterface> parsed_jsep_desc(DeSerialize(sdp));
226 EXPECT_EQ(sdp, parsed_sdp);
232 std::string sdp local
[all...]
H A Djsepsessiondescription.cc80 const std::string& sdp,
87 if (!jsep_desc->Initialize(sdp, error)) {
114 bool JsepSessionDescription::Initialize(const std::string& sdp, argument
116 return SdpDeserialize(sdp, this, error);
79 CreateSessionDescription(const std::string& type, const std::string& sdp, SdpParseError* error) argument
H A Dpeerconnection_unittest.cc122 std::string* sdp) {
125 while ((ssrc_pos = sdp->find(line_start, ssrc_pos)) !=
127 size_t end_ssrc = sdp->find(kSdpLineEnd, ssrc_pos);
128 sdp->erase(ssrc_pos, end_ssrc - ssrc_pos + strlen(kSdpLineEnd));
190 std::string sdp; local
191 EXPECT_TRUE(offer->ToString(&sdp));
194 webrtc::SessionDescriptionInterface::kOffer, sdp);
793 std::string sdp; local
794 EXPECT_TRUE(answer->ToString(&sdp));
798 webrtc::SessionDescriptionInterface::kAnswer, sdp);
121 RemoveLinesFromSdp(const std::string& line_start, std::string* sdp) argument
867 FilterIncomingSdpMessage(std::string* sdp) argument
[all...]
H A Dpeerconnectioninterface_unittest.cc305 void SetSsrcToZero(std::string* sdp) { argument
309 while ((ssrc_pos = sdp->find(kSdpSsrcAtribute, ssrc_pos)) !=
311 size_t end_ssrc = sdp->find(" ", ssrc_pos);
312 sdp->replace(ssrc_pos, end_ssrc - ssrc_pos, kSdpSsrcAtributeZero);
473 std::string sdp; local
474 EXPECT_TRUE(candidate->ToString(&sdp));
475 EXPECT_LT(0u, sdp.size());
477 candidate->sdp_mline_index(), sdp, NULL));
751 std::string sdp; local
752 EXPECT_TRUE(offer->ToString(&sdp));
760 CreateAndSetRemoteOffer(const std::string& sdp) argument
779 std::string sdp; local
792 std::string sdp; local
803 std::string sdp; local
818 std::string sdp; local
831 CreateAnswerAsRemoteDescription(const std::string& sdp) argument
839 CreatePrAnswerAndAnswerAsRemoteDescription(const std::string& sdp) argument
868 std::string sdp; local
1378 std::string sdp; local
1590 std::string sdp; local
1802 std::string sdp; local
2181 std::string sdp; local
2227 std::string sdp; local
[all...]
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DAppRTCClient.java49 public void sendOfferSdp(final SessionDescription sdp); argument
54 public void sendAnswerSdp(final SessionDescription sdp); argument
108 public void onRemoteDescription(final SessionDescription sdp); argument
H A DWebSocketRTCClient.java185 public void sendOfferSdp(final SessionDescription sdp) { argument
194 jsonPut(json, "sdp", sdp.description);
201 sdp.description);
210 public void sendAnswerSdp(final SessionDescription sdp) { argument
219 jsonPut(json, "sdp", sdp.description);
236 jsonPut(json, "candidate", candidate.sdp);
280 SessionDescription sdp = new SessionDescription(
282 json.getString("sdp"));
[all...]
H A DCallActivity.java528 public void onRemoteDescription(final SessionDescription sdp) { argument
537 logAndToast("Received remote " + sdp.type + ", delay=" + delta + "ms");
538 peerConnectionClient.setRemoteDescription(sdp);
585 public void onLocalDescription(final SessionDescription sdp) { argument
591 logAndToast("Sending " + sdp.type + ", delay=" + delta + "ms");
593 appRtcClient.sendOfferSdp(sdp);
595 appRtcClient.sendAnswerSdp(sdp);
H A DPeerConnectionClient.java179 public void onLocalDescription(final SessionDescription sdp); argument
659 public void setRemoteDescription(final SessionDescription sdp) { argument
666 String sdpDescription = sdp.description;
687 sdp.type, sdpDescription);
1022 final SessionDescription sdp = new SessionDescription(
1024 localSdp = sdp;
1029 Log.d(TAG, "Set local SDP from " + sdp.type);
1030 peerConnection.setLocalDescription(sdpObserver, sdp);
/external/syslinux/com32/lib/syslinux/
H A Dload_linux.c162 struct setup_data *sdp; local
423 for (sdp = setup_data->next; sdp != setup_data; sdp = sdp->next) {
427 size_t size = sdp->hdr.len + sizeof(sdp->hdr);
429 if (!sdp->data || !sdp->hdr.len)
450 prev_ptr = &sdp
[all...]
/external/webrtc/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/tcpdump/
H A Dprint-atalk.c99 register const struct atShortDDP *sdp; local
126 sdp = (const struct atShortDDP *)bp;
128 ataddr_string(ndo, 0, lp->src), ddpskt_string(ndo, sdp->srcSkt)));
130 ataddr_string(ndo, 0, lp->dst), ddpskt_string(ndo, sdp->dstSkt)));
134 ddp_print(ndo, bp, length, sdp->type, 0, lp->src, sdp->srcSkt);
/external/webrtc/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
H A DPeerConnectionClientTest.java118 public void onLocalDescription(SessionDescription sdp) { argument
119 Log.d(TAG, "LocalSDP type: " + sdp.type);
121 localSdp = sdp;
/external/webrtc/webrtc/examples/peerconnection/client/
H A Dconductor.cc31 const char kSessionDescriptionSdpName[] = "sdp";
188 std::string sdp; local
189 if (!candidate->ToString(&sdp)) {
193 jmessage[kCandidateSdpName] = sdp;
276 std::string sdp; local
278 &sdp)) {
284 webrtc::CreateSessionDescription(type, sdp, &error));
301 std::string sdp; local
306 !rtc::GetStringFromJsonObject(jmessage, kCandidateSdpName, &sdp)) {
312 webrtc::CreateIceCandidate(sdp_mid, sdp_mlineindex, sdp,
513 std::string sdp; local
[all...]
/external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
H A DPeerConnectionTest.java406 private SessionDescription sdp = null; field in class:PeerConnectionTest.SdpObserverLatch
413 public void onCreateSuccess(SessionDescription sdp) { argument
414 this.sdp = sdp;
449 return sdp;
/external/curl/tests/server/
H A Dtftpd.c1242 struct tftphdr * volatile sdp = r_init(); /* data buffer */ local
1250 size = readit(test, (struct tftphdr **)&sdp, pf->f_convert);
1255 sdp->th_opcode = htons((unsigned short)opcode_DATA);
1256 sdp->th_block = htons(sendblock);
1268 if(swrite(peer, sdp, size + 4) != size + 4) {
/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.cc564 ServiceDescriptorProto sdp; local
565 PrintSerializedPbInterval(descriptor, sdp);

Completed in 520 milliseconds

12