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

1 2

  /external/u-boot/board/cobra5272/
cobra5272.c 21 volatile sdramctrl_t *sdp = (sdramctrl_t *) (MMAP_SDRAM); local
23 sdp->sdram_sdtr = 0xf539;
24 sdp->sdram_sdcr = 0x4211;
  /external/u-boot/board/freescale/m5272c3/
m5272c3.c 23 sdramctrl_t * sdp = (sdramctrl_t *)(MMAP_SDRAM); local
25 out_be16(&sdp->sdram_sdtr, 0xf539);
26 out_be16(&sdp->sdram_sdcr, 0x4211);
  /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/u-boot/board/freescale/m5275evb/
m5275evb.c 29 sdramctrl_t *sdp = (sdramctrl_t *)(MMAP_SDRAM); local
36 out_be32(&sdp->sdbar0, CONFIG_SYS_SDRAM_BASE);
37 out_be32(&sdp->sdbmr0, MCF_SDRAMC_SDMRn_BAM_32M | MCF_SDRAMC_SDMRn_V);
40 out_be32(&sdp->sdcfg1, 0x83711630);
41 out_be32(&sdp->sdcfg2, 0x46770000);
44 out_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN | MCF_SDRAMC_SDCR_CKE);
47 setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);
53 setbits_be32(&sdp->sdmr,
59 out_be32(&sdp->sdmr, 0x058d0000);
63 clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD)
    [all...]
  /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
79 sdp = open("log/file568.txt", O_RDONLY);
80 fstat(sdp, &file_info);
81 close(sdp);
  /external/u-boot/board/astro/mcf5373l/
mcf5373l.c 32 sdram_t *sdp = (sdram_t *)(MMAP_SDRAM); local
42 &sdp->cs0);
44 &sdp->cs1);
50 __raw_writel(0x33211530, &sdp->cfg1);
51 __raw_writel(0x56570000, &sdp->cfg2);
53 __raw_writel(0xE1462C02, &sdp->ctrl);
56 __raw_writel(0xE1462C04, &sdp->ctrl);
58 __raw_writel(0xE1462C04, &sdp->ctrl);
60 __raw_writel(0x008D0000, &sdp->mode);
62 __raw_writel(0x80010000, &sdp->mode)
    [all...]
  /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/tcpdump/
print-atalk.c 99 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/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...]
PeerConnectionClient.java 119 private SessionDescription localSdp; // either offer or answer SDP
177 * Callback fired once local SDP is created and set.
179 public void onLocalDescription(final SessionDescription sdp);
244 localSdp = null; // either offer or answer SDP
420 // Create SDP constraints.
659 public void setRemoteDescription(final SessionDescription sdp) {
666 String sdpDescription = sdp.description;
685 Log.d(TAG, "Set remote SDP.");
687 sdp.type, sdpDescription);
766 // Check if a=fmtp string already exist in remote SDP for this codec an
1022 final SessionDescription sdp = new SessionDescription( local
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPWriter.cpp 432 AString sdp; local
433 sdp = "v=0\r\n";
435 sdp.append("o=- ");
438 sdp.append(ntp);
439 sdp.append(" ");
440 sdp.append(ntp);
441 sdp.append(" IN IP4 127.0.0.0\r\n");
443 sdp.append(
451 sdp.append(inet_ntoa(addr));
453 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...]
  /art/runtime/jit/
profile_saver.cc 328 std::unique_ptr<ScopedDefaultPriority> sdp; local
332 sdp.reset(new ScopedDefaultPriority(profiler_pthread));
    [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 564 ServiceDescriptorProto sdp; local
565 PrintSerializedPbInterval(descriptor, sdp);
    [all...]
  /external/u-boot/drivers/usb/gadget/
f_sdp.c 8 * This file implements the Serial Download Protocol (SDP) as specified in
9 * the i.MX 6 Reference Manual. The SDP is a USB HID based protocol and
30 #include <sdp.h>
239 struct f_sdp *sdp = req->context; local
262 sdp->always_send_status = false;
263 sdp->error_status = 0x0;
265 sdp->state = SDP_STATE_TX_SEC_CONF;
266 sdp->dnl_address = be32_to_cpu(cmd->addr);
267 sdp->dnl_bytes_remaining = be32_to_cpu(cmd->cnt);
268 sdp->next_state = SDP_STATE_TX_REGISTER
323 struct f_sdp *sdp = req->context; local
374 struct f_sdp *sdp = req->context; local
413 struct f_sdp *sdp = f->config->cdev->req->context; local
468 struct f_sdp *sdp = func_to_sdp(f); local
535 struct f_sdp *sdp = func_to_sdp(f); local
557 struct f_sdp *sdp = func_to_sdp(f); local
564 struct f_sdp *sdp = func_to_sdp(f); local
    [all...]
  /external/curl/tests/server/
tftpd.c 1240 struct tftphdr * volatile sdp = r_init(); /* data buffer */ local
1248 size = readit(test, (struct tftphdr **)&sdp, pf->f_convert);
1253 sdp->th_opcode = htons((unsigned short)opcode_DATA);
1254 sdp->th_block = htons(sendblock);
1266 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

Completed in 2321 milliseconds

1 2