HomeSort by relevance Sort by last modified time
    Searched refs:ice_pwd (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocator.cc 37 const std::string& ice_pwd,
47 password_(flags_ & PORTALLOCATOR_ENABLE_SHARED_UFRAG ? ice_pwd : "") {
62 const std::string& ice_pwd) {
67 // |ice_ufrag| and |ice_pwd|.
68 // Ideally |ice_ufrag| and |ice_pwd| should change together, but
69 // there can be instances where only ice_pwd will be changed.
70 std::string key_str = ice_ufrag + ":" + ice_pwd;
74 content_name, component, ice_ufrag, ice_pwd);
87 return CreateSessionInternal(content_name, component, ice_ufrag, ice_pwd);
transportdescription.h 86 const std::string& ice_pwd,
93 ice_pwd(ice_pwd),
106 ice_pwd(from.ice_pwd),
119 ice_pwd = from.ice_pwd;
148 std::string ice_pwd; member in struct:cricket::TransportDescription
transportdescriptionfactory.cc 67 desc->ice_pwd = talk_base::CreateRandomString(ICE_PWD_LENGTH);
70 desc->ice_pwd = current_description->ice_pwd;
118 desc->ice_pwd = talk_base::CreateRandomString(ICE_PWD_LENGTH);
121 desc->ice_pwd = current_description->ice_pwd;
rawtransportchannel.h 74 const std::string& ice_pwd) {}
76 const std::string& ice_pwd) {}
101 virtual void SetIcePwd(const std::string& ice_pwd) {}
transportchannelimpl.h 61 const std::string& ice_pwd) = 0;
65 const std::string& ice_pwd) = 0;
dtlstransportchannel.h 189 const std::string& ice_pwd) {
190 channel_->SetIceCredentials(ice_ufrag, ice_pwd);
193 const std::string& ice_pwd) {
194 channel_->SetRemoteIceCredentials(ice_ufrag, ice_pwd);
transportdescriptionfactory_unittest.cc 55 const std::string& ice_pwd, const std::string& dtls_alg) {
59 if (ice_ufrag.empty() && ice_pwd.empty()) {
63 desc->ice_pwd.size());
66 EXPECT_EQ(ice_pwd, desc->ice_pwd);
119 EXPECT_NE(org_desc->ice_pwd, restart_desc->ice_pwd);
124 restart_desc->ice_pwd.size());
214 old_desc->ice_ufrag, old_desc->ice_pwd, kDefaultDigestAlg);
319 old_desc->ice_ufrag, old_desc->ice_pwd, "");
    [all...]
p2ptransportchannel.h 83 const std::string& ice_pwd);
85 const std::string& ice_pwd);
portallocator.h 71 // TODO(mallinath) - Change username and password to ice_ufrag and ice_pwd.
131 const std::string& ice_pwd);
175 const std::string& ice_pwd) = 0;
fakesession.h 84 const std::string& ice_pwd() const { return ice_pwd_; } function in class:cricket::FakeTransportChannel
104 const std::string& ice_pwd) {
106 ice_pwd_ = ice_pwd;
109 const std::string& ice_pwd) {
111 remote_ice_pwd_ = ice_pwd;
p2ptransportchannel.cc 251 const std::string& ice_pwd) {
257 ice_restart = (ice_ufrag_ != ice_ufrag) || (ice_pwd_!= ice_pwd);
261 ice_pwd_ = ice_pwd;
270 const std::string& ice_pwd) {
275 (remote_ice_pwd_!= ice_pwd);
279 remote_ice_pwd_ = ice_pwd;
    [all...]
dtlstransportchannel_unittest.cc 440 EXPECT_EQ(kIcePwd1, channel1->ice_pwd());
459 EXPECT_EQ(kIcePwd1, channel1->ice_pwd());
transport_unittest.cc 157 EXPECT_EQ(kIcePwd1, channel_->ice_pwd());
transport.cc 661 local_description_->ice_pwd);
667 remote_description_->ice_pwd);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
fakeportallocator.h 28 const std::string& ice_pwd)
29 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd,
94 const std::string& ice_pwd) {
96 worker_thread_, factory_, content_name, component, ice_ufrag, ice_pwd);
httpportallocator.h 68 const std::string& ice_pwd) = 0;
114 const std::string& ice_pwd,
163 const std::string& ice_ufrag, const std::string& ice_pwd);
173 const std::string& ice_pwd,
httpportallocator.cc 129 const std::string& ice_pwd,
135 ice_ufrag, ice_pwd),
252 const std::string& ice_ufrag, const std::string& ice_pwd) {
254 ice_ufrag, ice_pwd, stun_hosts(),
266 const std::string& ice_pwd,
272 ice_ufrag, ice_pwd, stun_hosts,
connectivitychecker_unittest.cc 92 const std::string& ice_ufrag, const std::string& ice_pwd,
101 ice_pwd,
150 const std::string& ice_ufrag, const std::string& ice_pwd) {
159 ice_pwd,
basicportallocator.h 100 const std::string& ice_pwd);
122 const std::string& ice_pwd);
connectivitychecker.h 121 const std::string& ice_pwd,
127 allocator, content_name, component, ice_ufrag, ice_pwd, stun_hosts,
basicportallocator.cc 227 const std::string& ice_ufrag, const std::string& ice_pwd) {
229 ice_ufrag, ice_pwd);
238 const std::string& ice_pwd)
240 ice_ufrag, ice_pwd, allocator->flags()),
    [all...]
connectivitychecker.cc 54 const std::string& ice_pwd) {
56 ice_ufrag, ice_pwd,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsepsessiondescription.cc 137 updated_candidate.set_password(transport_info->description.ice_pwd);
peerconnection_unittest.cc 314 IceUfragPwdPair(transport_desc->ice_ufrag, transport_desc->ice_pwd);
318 EXPECT_NE(ufrag_pwd.second, transport_desc->ice_pwd);
322 EXPECT_EQ(ufrag_pwd.second, transport_desc->ice_pwd);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasession_unittest.cc 255 EXPECT_EQ(current_audio_pwd, ti_audio->description.ice_pwd);
260 ti_audio->description.ice_pwd.size());
272 EXPECT_EQ(ti_audio->description.ice_pwd,
273 ti_video->description.ice_pwd);
277 EXPECT_EQ(current_video_pwd, ti_video->description.ice_pwd);
282 ti_video->description.ice_pwd.size());
294 EXPECT_EQ(ti_audio->description.ice_pwd,
295 ti_data->description.ice_pwd);
299 EXPECT_EQ(current_data_pwd, ti_data->description.ice_pwd);
304 ti_data->description.ice_pwd.size())
    [all...]

Completed in 148 milliseconds

1 2