HomeSort by relevance Sort by last modified time
    Searched defs:sdp (Results 1 - 25 of 30) sorted by null

1 2

  /external/webrtc/talk/app/webrtc/objc/public/
RTCICECandidate.h 38 // This indicates the index (starting at zero) of m-line in the SDP this
42 // Creates an SDP-ized form of this candidate.
43 @property(nonatomic, copy, readonly) NSString* sdp; variable
45 // Creates an ICECandidateInterface based on SDP string.
48 sdp:(NSString*)sdp;
  /external/webrtc/webrtc/api/objc/
RTCIceCandidate.h 25 * associated with in the SDP.
29 /** The SDP string for this candidate. */
30 @property(nonatomic, readonly) NSString *sdp; variable
35 * Initialize an RTCIceCandidate from SDP.
37 - (instancetype)initWithSdp:(NSString *)sdp
RTCSessionDescription.h 30 /** The SDP string representation of this session description. */
31 @property(nonatomic, readonly) NSString *sdp; variable
35 /** Initialize a session description with a type and SDP string. */
36 - (instancetype)initWithType:(RTCSdpType)type sdp:(NSString *)sdp
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
IceCandidate.java 37 public final String sdp; field in class:IceCandidate
39 public IceCandidate(String sdpMid, int sdpMLineIndex, String sdp) {
42 this.sdp = sdp;
46 return sdpMid + ":" + sdpMLineIndex + ":" + sdp;
  /external/curl/tests/libtest/
lib568.c 46 int sdp; local
77 sdp = open("log/file568.txt", O_RDONLY);
78 fstat(sdp, &file_info);
79 close(sdp);
  /external/syslinux/core/fs/lib/
searchconfig.c 22 const char *sd, **sdp; local
25 for (sdp = search_directories; (sd = *sdp); sdp++) {
  /frameworks/base/core/java/android/bluetooth/
BluetoothHidDeviceAppSdpSettings.java 45 BluetoothHidDeviceAppSdpSettings sdp = (BluetoothHidDeviceAppSdpSettings) o; local
  /external/webrtc/talk/app/webrtc/
jsepsessiondescription_unittest.cc 57 // In SDP this is described by two m lines, one audio and one video.
114 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) {
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 = Serialize(jsep_desc_.get()); local
    [all...]
peerconnection_unittest.cc 122 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);
    [all...]
peerconnectioninterface_unittest.cc 81 // Reference SDP with a MediaStream with label "stream1" and audio track with
107 // Reference SDP with two MediaStreams with label "stream1" and "stream2. Each
137 // Reference SDP without MediaStreams. Msid is not supported.
156 // Reference SDP without MediaStreams. Msid is supported.
176 // Reference SDP without MediaStreams and audio only.
191 // Reference SENDONLY SDP without MediaStreams. Msid is not supported.
305 void SetSsrcToZero(std::string* sdp) {
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
751 std::string sdp; local
779 std::string sdp; local
792 std::string sdp; local
803 std::string sdp; local
818 std::string sdp; local
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...]
webrtcsdp_unittest.cc 133 // Reference sdp string
215 // SDP reference string without the candidates.
295 // draft-ietf-mmusic-sctp-sdp-12
1231 std::string sdp = local
1336 std::string sdp = os.str(); local
2036 std::string sdp = kSdpOneCandidate; local
2347 std::string sdp = kSdpFullString; local
    [all...]
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 123 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 for testing
179 << ": SetLocalDescription " << type << " " << sdp; local
191 << ": SetRemoteDescription " << type << " " << sdp; local
    [all...]
  /external/syslinux/com32/lib/syslinux/
load_linux.c 162 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->hdr.next
    [all...]
  /external/tcpdump/
print-atalk.c 93 register const struct atShortDDP *sdp; local
112 sdp = (const struct atShortDDP *)bp;
114 ataddr_string(ndo, 0, lp->src), ddpskt_string(ndo, sdp->srcSkt)));
116 ataddr_string(ndo, 0, lp->dst), ddpskt_string(ndo, sdp->dstSkt)));
120 ddp_print(ndo, bp, length, sdp->type, 0, lp->src, sdp->srcSkt);
  /external/webrtc/webrtc/examples/peerconnection/client/
conductor.cc 31 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, &error))
513 std::string sdp; local
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketRTCClient.java 34 * Messages to other party (with local Ice candidates and answer SDP) can
166 Log.w(TAG, "No offer SDP in room response.");
183 // Send local offer SDP to the other participant.
185 public void sendOfferSdp(final SessionDescription sdp) {
190 reportError("Sending offer SDP in non connected state.");
194 jsonPut(json, "sdp", sdp.description);
201 sdp.description);
208 // Send local answer SDP to the other participant.
210 public void sendAnswerSdp(final SessionDescription sdp) {
280 SessionDescription sdp = new SessionDescription( local
289 SessionDescription sdp = new SessionDescription( local
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPWriter.cpp 430 AString sdp; local
431 sdp = "v=0\r\n";
433 sdp.append("o=- ");
436 sdp.append(ntp);
437 sdp.append(" ");
438 sdp.append(ntp);
439 sdp.append(" IN IP4 127.0.0.0\r\n");
441 sdp.append(
449 sdp.append(inet_ntoa(addr));
451 sdp.append
    [all...]
MyTransmitter.h 95 mStreamURL.append("/bazong.sdp");
155 AString sdp; local
156 sdp = "v=0\r\n";
158 sdp.append("o=- ");
161 sdp.append(ntp);
162 sdp.append(" ");
163 sdp.append(ntp);
164 sdp.append(" IN IP4 127.0.0.0\r\n");
166 sdp.append(
174 sdp.append(inet_ntoa(addr))
    [all...]
  /system/nfc/src/nfa/include/
nfa_p2p_api.h 74 #define NFA_P2P_SDP_EVT 0x0A /* Remote SAP of SDP result */
182 tNFA_P2P_SDP sdp; /* NFA_P2P_SDP_EVT */ member in union:__anon107334
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 564 ServiceDescriptorProto sdp; local
565 PrintSerializedPbInterval(descriptor, sdp);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/sdp/
SdpManager.java 15 package com.android.bluetooth.sdp;
97 /* Inner class used for wrapping sdp search instance data */
389 if(D) Log.d(TAG, "sdpRecordFoundCallback: found a sdp record of size "
487 * @param masId The MAS ID to associate with this SDP record
501 * creation/destruction of BluetoothSockets, hence SDP record cleanup
531 * creation/destruction of BluetoothSockets, hence SDP record cleanup
562 * creation/destruction of BluetoothSockets, hence SDP record cleanup
591 * creation/destruction of BluetoothSockets, hence SDP record cleanup
615 * creation/destruction of BluetoothSockets, hence SDP record cleanup
626 * Remove a SDP record
    [all...]
  /external/curl/tests/server/
tftpd.c 1237 struct tftphdr *sdp; /* data buffer */ local
1244 sdp = r_init();
1247 size = readit(test, &sdp, pf->f_convert);
1252 sdp->th_opcode = htons((unsigned short)opcode_DATA);
1253 sdp->th_block = htons(sendblock);
1265 if(swrite(peer, sdp, size + 4) != size + 4) {
    [all...]
  /external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
PeerConnectionTest.java 406 private SessionDescription sdp = null; field in class:PeerConnectionTest.SdpObserverLatch
413 public void onCreateSuccess(SessionDescription sdp) {
414 this.sdp = sdp;
449 return sdp;
584 // connection (not via SDP), so answeringExpectations can only register
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
MulticastSocketTest.java 249 DatagramPacket sdp = createSendDatagramPacket(groupAddress, msg); local
250 sendingSocket.send(sdp, (byte) 10 /* ttl */);
346 DatagramPacket sdp = createSendDatagramPacket(groupAddress, msg); local
347 sendingSocket.send(sdp);
372 sdp = createSendDatagramPacket(group2Address, msg);
373 sendingSocket.send(sdp);
435 DatagramPacket sdp = createSendDatagramPacket(groupAddress, msg); local
436 sendingSocket.send(sdp);
508 DatagramPacket sdp = createSendDatagramPacket(groupAddress, msg); local
509 mss.send(sdp, (byte) 10 /* ttl */)
633 DatagramPacket sdp = createSendDatagramPacket(groupAddress, msg); local
748 DatagramPacket sdp = createSendDatagramPacket(groupAddress, msg); local
    [all...]
  /system/bt/btif/include/
btif_hl.h 196 tBTA_HL_SDP sdp; member in struct:__anon105907
228 1]; /* service name to be used in the SDP; null terminated*/
230 the SDP; null terminated */
232 the SDP; null terminated */

Completed in 1381 milliseconds

1 2