Home
last modified time | relevance | path

Searched refs:remote_desc (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/webrtc/p2p/base/
Dtransport_unittest.cc76 cricket::TransportDescription remote_desc(kIceUfrag1, kIcePwd1); in TEST_F() local
77 ASSERT_TRUE(transport_->SetRemoteTransportDescription(remote_desc, in TEST_F()
157 cricket::TransportDescription remote_desc( in TEST_F() local
161 ASSERT_TRUE(transport_->SetRemoteTransportDescription(remote_desc, in TEST_F()
178 cricket::TransportDescription remote_desc( in TEST_F() local
182 ASSERT_TRUE(transport_->SetRemoteTransportDescription(remote_desc, in TEST_F()
207 cricket::TransportDescription remote_desc( in TEST_F() local
211 ASSERT_TRUE(transport_->SetRemoteTransportDescription(remote_desc, in TEST_F()
Dtransportcontroller_unittest.cc344 TransportDescription remote_desc( in TEST_F() local
349 "audio", remote_desc, cricket::CA_OFFER, &err)); in TEST_F()
374 TransportDescription remote_desc( in TEST_F() local
378 "audio", remote_desc, cricket::CA_OFFER, &err)); in TEST_F()
Ddtlstransportchannel_unittest.cc168 cricket::TransportDescription remote_desc( in Negotiate() local
179 remote_desc, cricket::CA_ANSWER, NULL)); in Negotiate()
182 remote_desc, cricket::CA_OFFER, NULL)); in Negotiate()
/external/u-boot/tools/gdb/
Dremote.c84 int remote_desc = -1, remote_timeout = 10; variable
96 SERIAL_WRITE(remote_desc, "+", 1); in remote_reset()
602 ch = SERIAL_READCHAR (remote_desc, timeout); in readchar()
675 if (SERIAL_WRITE (remote_desc, buf2, p - buf2))
902 SERIAL_WRITE (remote_desc, "+", 1);
908 SERIAL_WRITE (remote_desc, "-", 1);
914 SERIAL_WRITE (remote_desc, "+", 1);
Dremote.h7 extern int remote_desc, remote_timeout;
Dgdbcont.c59 remote_desc = sfd; in main()
Dgdbsend.c103 remote_desc = sfd; in main()
/external/webrtc/talk/app/webrtc/
Dwebrtcsession.cc1684 const SessionDescriptionInterface* remote_desc) { in UseCandidatesInSessionDescription() argument
1685 if (!remote_desc) { in UseCandidatesInSessionDescription()
1690 for (size_t m = 0; m < remote_desc->number_of_mediasections(); ++m) { in UseCandidatesInSessionDescription()
1691 const IceCandidateCollection* candidates = remote_desc->candidates(m); in UseCandidatesInSessionDescription()
1695 if (!ReadyToUseRemoteCandidate(candidate, remote_desc, &valid)) { in UseCandidatesInSessionDescription()
2043 const SessionDescriptionInterface* remote_desc, in ReadyToUseRemoteCandidate() argument
2048 remote_desc ? remote_desc : remote_desc_.get(); in ReadyToUseRemoteCandidate()
Dwebrtcsession_unittest.cc2163 const SessionDescriptionInterface* remote_desc = in TEST_F() local
2165 ASSERT_TRUE(remote_desc != NULL); in TEST_F()
2166 ASSERT_EQ(2u, remote_desc->number_of_mediasections()); in TEST_F()
2168 remote_desc->candidates(kMediaContentIndex0); in TEST_F()
2198 const SessionDescriptionInterface* remote_desc = in TEST_F() local
2200 ASSERT_TRUE(remote_desc != NULL); in TEST_F()
2201 ASSERT_EQ(2u, remote_desc->number_of_mediasections()); in TEST_F()
2203 remote_desc->candidates(kMediaContentIndex0); in TEST_F()
2217 remote_desc = session_->remote_description(); in TEST_F()
2218 ASSERT_TRUE(remote_desc != NULL); in TEST_F()
[all …]
Dwebrtcsession.h399 const SessionDescriptionInterface* remote_desc);
446 const SessionDescriptionInterface* remote_desc,
Dpeerconnection.cc1055 const cricket::SessionDescription* remote_desc = desc->description(); in SetRemoteDescription() local
1056 const cricket::ContentInfo* audio_content = GetFirstAudioContent(remote_desc); in SetRemoteDescription()
1057 const cricket::ContentInfo* video_content = GetFirstVideoContent(remote_desc); in SetRemoteDescription()
1059 GetFirstAudioContentDescription(remote_desc); in SetRemoteDescription()
1061 GetFirstVideoContentDescription(remote_desc); in SetRemoteDescription()
1063 GetFirstDataContentDescription(remote_desc); in SetRemoteDescription()
1067 if (remote_desc->msid_supported() || in SetRemoteDescription()
Dpeerconnection_unittest.cc543 const cricket::SessionDescription* remote_desc = in VerifyRejectedMediaInSessionDescription() local
548 const ContentInfo* remote_audio_content = GetFirstAudioContent(remote_desc); in VerifyRejectedMediaInSessionDescription()
555 const ContentInfo* remote_video_content = GetFirstVideoContent(remote_desc); in VerifyRejectedMediaInSessionDescription()
/external/webrtc/talk/session/media/
Dchannel.h127 bool PushdownRemoteDescription(const SessionDescription* remote_desc,
Dchannel.cc774 const SessionDescription* remote_desc, ContentAction action, in PushdownRemoteDescription() argument
776 const ContentInfo* content_info = GetFirstContent(remote_desc); in PushdownRemoteDescription()