Home
last modified time | relevance | path

Searched refs:remote_desc (Results 1 – 11 of 11) 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/valgrind/coregrind/m_gdbserver/
Dremote-utils.c104 static int remote_desc = INVALID_DESCRIPTOR; variable
163 if (remote_desc == INVALID_DESCRIPTOR) in vgdb_state_looks_bad()
284 if (remote_desc == INVALID_DESCRIPTOR) { in setup_remote_desc_for_reading()
291 remote_desc = open_fifo ("read", from_gdb, VKI_O_RDONLY|VKI_O_NONBLOCK); in setup_remote_desc_for_reading()
292 save_fcntl_flags = VG_(fcntl) (remote_desc, VKI_F_GETFL, 0); in setup_remote_desc_for_reading()
293 VG_(fcntl) (remote_desc, VKI_F_SETFL, save_fcntl_flags & ~VKI_O_NONBLOCK); in setup_remote_desc_for_reading()
295 remote_desc_pollfdread_activity.fd = remote_desc; in setup_remote_desc_for_reading()
468 ppFinishReason(reason), remote_desc, write_remote_desc); in remote_finish()
474 if (remote_desc != INVALID_DESCRIPTOR) { in remote_finish()
499 VG_(close) (remote_desc); in remote_finish()
[all …]
/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.h399 const SessionDescriptionInterface* remote_desc);
446 const SessionDescriptionInterface* remote_desc,
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 …]
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()