/external/webrtc/webrtc/p2p/base/ |
portallocator.cc | 19 const std::string& ice_pwd, 26 ice_pwd_(ice_pwd) { 28 RTC_DCHECK(!ice_pwd.empty()); 36 const std::string& ice_pwd) { 37 return CreateSessionInternal(content_name, component, ice_ufrag, ice_pwd);
|
transportdescription.h | 81 const std::string& ice_pwd, 88 ice_pwd(ice_pwd), 94 const std::string& ice_pwd) 96 ice_pwd(ice_pwd), 102 ice_pwd(from.ice_pwd), 115 ice_pwd = from.ice_pwd; 144 std::string ice_pwd; member in struct:cricket::TransportDescription [all...] |
transportdescriptionfactory.cc | 33 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH); 36 desc->ice_pwd = current_description->ice_pwd; 67 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH); 70 desc->ice_pwd = current_description->ice_pwd;
|
transportchannelimpl.h | 53 const std::string& ice_pwd) = 0; 57 const std::string& ice_pwd) = 0;
|
transportdescriptionfactory_unittest.cc | 36 const std::string& ice_pwd, const std::string& dtls_alg) { 39 if (ice_ufrag.empty() && ice_pwd.empty()) { 43 desc->ice_pwd.size()); 46 EXPECT_EQ(ice_pwd, desc->ice_pwd); 99 EXPECT_NE(org_desc->ice_pwd, restart_desc->ice_pwd); 104 restart_desc->ice_pwd.size()); 165 old_desc->ice_ufrag, old_desc->ice_pwd, digest_alg); 193 old_desc->ice_ufrag, old_desc->ice_pwd, ""); [all...] |
transport.cc | 27 if (desc.ice_ufrag.empty() && desc.ice_pwd.empty()) 34 if (desc.ice_pwd.length() < ICE_PWD_MIN_LENGTH || 35 desc.ice_pwd.length() > ICE_PWD_MAX_LENGTH) { 62 return IceCredentialsChanged(old_desc.ice_ufrag, old_desc.ice_pwd, 63 new_desc.ice_ufrag, new_desc.ice_pwd); 345 local_description_->ice_pwd); 352 remote_description_->ice_pwd);
|
dtlstransportchannel.h | 171 const std::string& ice_pwd) override { 172 channel_->SetIceCredentials(ice_ufrag, ice_pwd); 175 const std::string& ice_pwd) override { 176 channel_->SetRemoteIceCredentials(ice_ufrag, ice_pwd);
|
p2ptransportchannel.h | 42 IceParameters(const std::string& ice_ufrag, const std::string& ice_pwd) 43 : ufrag(ice_ufrag), pwd(ice_pwd) {} 81 const std::string& ice_pwd) override; 83 const std::string& ice_pwd) override;
|
portallocator.h | 117 const std::string& ice_pwd, 146 const std::string& ice_pwd() const { return ice_pwd_; } function in class:cricket::PortAllocatorSession 150 // ice_pwd. 194 const std::string& ice_pwd); 243 const std::string& ice_pwd) = 0;
|
faketransportcontroller.h | 59 const std::string& ice_pwd() const { return ice_pwd_; } function in class:cricket::FakeTransportChannel 91 const std::string& ice_pwd) override { 93 ice_pwd_ = ice_pwd; 96 const std::string& ice_pwd) override { 98 remote_ice_pwd_ = ice_pwd;
|
p2ptransportchannel.cc | 338 const std::string& ice_pwd) { 341 ice_pwd_ = ice_pwd; 347 const std::string& ice_pwd) { 350 IceParameters new_ice(ice_ufrag, ice_pwd); 360 candidate.set_password(ice_pwd); 365 conn->MaybeSetRemoteIceCredentials(ice_ufrag, ice_pwd); 417 allocator_sessions_.back()->ice_pwd(), ice_ufrag_, [all...] |
transport_unittest.cc | 74 EXPECT_EQ(kIcePwd1, channel_->ice_pwd());
|
port.h | 566 const std::string& ice_pwd);
|
port.cc | [all...] |
/external/webrtc/webrtc/p2p/client/ |
fakeportallocator.h | 90 const std::string& ice_pwd) 91 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd, 172 const std::string& ice_pwd) override { 174 worker_thread_, factory_, content_name, component, ice_ufrag, ice_pwd);
|
httpportallocator.h | 56 const std::string& ice_pwd) = 0; 102 const std::string& ice_pwd,
|
basicportallocator.h | 78 const std::string& ice_pwd) override; 101 const std::string& ice_pwd);
|
httpportallocator.cc | 108 const std::string& ice_pwd, 114 ice_ufrag, ice_pwd),
|
basicportallocator.cc | 135 const std::string& ice_ufrag, const std::string& ice_pwd) { 137 this, content_name, component, ice_ufrag, ice_pwd); 147 const std::string& ice_pwd) 149 ice_ufrag, ice_pwd, allocator->flags()), [all...] |
/external/webrtc/talk/app/webrtc/ |
jsepsessiondescription.cc | 142 updated_candidate.set_password(transport_info->description.ice_pwd);
|
webrtcsdp_unittest.cc | 950 const char ice_pwd[] = "a=ice-pwd"; local [all...] |
peerconnection_unittest.cc | 580 IceUfragPwdPair(transport_desc->ice_ufrag, transport_desc->ice_pwd); 584 EXPECT_NE(ufrag_pwd.second, transport_desc->ice_pwd); 588 EXPECT_EQ(ufrag_pwd.second, transport_desc->ice_pwd); [all...] |
webrtcsession.cc | 240 tinfo->description.ice_pwd.empty()) { 525 old_transport_desc->ice_pwd, 527 new_transport_desc->ice_pwd)) { [all...] |
webrtcsdp.cc | [all...] |
/external/webrtc/talk/session/media/ |
mediasession_unittest.cc | 323 EXPECT_EQ(current_audio_pwd, ti_audio->description.ice_pwd); 328 ti_audio->description.ice_pwd.size()); 340 EXPECT_EQ(ti_audio->description.ice_pwd, 341 ti_video->description.ice_pwd); 345 EXPECT_EQ(current_video_pwd, ti_video->description.ice_pwd); 350 ti_video->description.ice_pwd.size()); 362 EXPECT_EQ(ti_audio->description.ice_pwd, 363 ti_data->description.ice_pwd); 367 EXPECT_EQ(current_data_pwd, ti_data->description.ice_pwd); 372 ti_data->description.ice_pwd.size()) [all...] |