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

1 2

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocator.cc 36 const std::string& ice_ufrag,
46 username_(flags_ & PORTALLOCATOR_ENABLE_SHARED_UFRAG ? ice_ufrag : ""),
61 const std::string& ice_ufrag,
67 // |ice_ufrag| and |ice_pwd|.
68 // Ideally |ice_ufrag| and |ice_pwd| should change together, but
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 108 const std::string& ice_ufrag,
116 ice_ufrag(ice_ufrag),
123 const std::string& ice_ufrag,
126 ice_ufrag(ice_ufrag),
133 ice_ufrag(from.ice_ufrag),
147 ice_ufrag = from.ice_ufrag;
177 std::string ice_ufrag; member in struct:cricket::TransportDescription
    [all...]
transportdescriptionfactory.cc 64 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH);
67 desc->ice_ufrag = current_description->ice_ufrag;
117 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH);
120 desc->ice_ufrag = current_description->ice_ufrag;
transportchannelimpl.h 63 virtual void SetIceCredentials(const std::string& ice_ufrag,
67 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag,
rawtransportchannel.h 74 virtual void SetIceCredentials(const std::string& ice_ufrag,
76 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag,
104 virtual void SetIceUfrag(const std::string& ice_ufrag) {}
dtlstransportchannel.h 205 virtual void SetIceCredentials(const std::string& ice_ufrag,
207 channel_->SetIceCredentials(ice_ufrag, ice_pwd);
209 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag,
211 channel_->SetRemoteIceCredentials(ice_ufrag, ice_pwd);
transportdescriptionfactory_unittest.cc 49 const std::string& opt, const std::string& ice_ufrag,
54 if (ice_ufrag.empty() && ice_pwd.empty()) {
56 desc->ice_ufrag.size());
60 EXPECT_EQ(ice_ufrag, desc->ice_ufrag);
115 EXPECT_NE(org_desc->ice_ufrag, restart_desc->ice_ufrag);
117 restart_desc->ice_ufrag.size());
202 old_desc->ice_ufrag, old_desc->ice_pwd, digest_alg);
307 old_desc->ice_ufrag, old_desc->ice_pwd, "")
    [all...]
portallocator.h 81 // TODO(mallinath) - Change username and password to ice_ufrag and ice_pwd.
141 const std::string& ice_ufrag,
191 const std::string& ice_ufrag,
fakesession.h 86 const std::string& ice_ufrag() const { return ice_ufrag_; } function in class:cricket::FakeTransportChannel
111 virtual void SetIceCredentials(const std::string& ice_ufrag,
113 ice_ufrag_ = ice_ufrag;
116 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag,
118 remote_ice_ufrag_ = ice_ufrag;
p2ptransportchannel.h 85 virtual void SetIceCredentials(const std::string& ice_ufrag,
87 virtual void SetRemoteIceCredentials(const std::string& ice_ufrag,
transport.cc 100 if (desc.ice_ufrag.empty() && desc.ice_pwd.empty())
103 if (desc.ice_ufrag.length() < ICE_UFRAG_MIN_LENGTH ||
104 desc.ice_ufrag.length() > ICE_UFRAG_MAX_LENGTH) {
135 return IceCredentialsChanged(old_desc.ice_ufrag, old_desc.ice_pwd,
136 new_desc.ice_ufrag, new_desc.ice_pwd);
815 ch->SetIceCredentials(local_description_->ice_ufrag,
822 ch->SetRemoteIceCredentials(remote_description_->ice_ufrag,
p2ptransportchannel.cc 255 void P2PTransportChannel::SetIceCredentials(const std::string& ice_ufrag,
263 IceCredentialsChanged(ice_ufrag_, ice_pwd_, ice_ufrag, ice_pwd);
266 ice_ufrag_ = ice_ufrag;
275 void P2PTransportChannel::SetRemoteIceCredentials(const std::string& ice_ufrag,
280 ice_restart = (remote_ice_ufrag_ != ice_ufrag) ||
284 remote_ice_ufrag_ = ice_ufrag;
    [all...]
dtlstransportchannel_unittest.cc 543 EXPECT_EQ(kIceUfrag1, channel1->ice_ufrag());
562 EXPECT_EQ(kIceUfrag1, channel1->ice_ufrag());
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
fakeportallocator.h 50 const std::string& ice_ufrag,
52 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd,
124 const std::string& ice_ufrag,
127 worker_thread_, factory_, content_name, component, ice_ufrag, ice_pwd);
httpportallocator.h 66 const std::string& ice_ufrag,
112 const std::string& ice_ufrag,
161 const std::string& ice_ufrag, const std::string& ice_pwd);
170 const std::string& ice_ufrag,
httpportallocator.cc 125 const std::string& ice_ufrag,
132 ice_ufrag, ice_pwd),
261 const std::string& ice_ufrag, const std::string& ice_pwd) {
263 ice_ufrag, ice_pwd, stun_hosts(),
274 const std::string& ice_ufrag,
281 ice_ufrag, ice_pwd, stun_hosts,
connectivitychecker_unittest.cc 114 const std::string& ice_ufrag, const std::string& ice_pwd,
122 ice_ufrag,
172 const std::string& ice_ufrag, const std::string& ice_pwd) {
180 ice_ufrag,
basicportallocator.h 100 const std::string& ice_ufrag,
122 const std::string& ice_ufrag,
connectivitychecker.h 120 const std::string& ice_ufrag,
127 allocator, content_name, component, ice_ufrag, ice_pwd, stun_hosts,
basicportallocator.cc 228 const std::string& ice_ufrag, const std::string& ice_pwd) {
230 this, content_name, component, ice_ufrag, ice_pwd);
239 const std::string& ice_ufrag,
242 ice_ufrag, ice_pwd, allocator->flags()),
    [all...]
connectivitychecker.cc 73 const std::string& ice_ufrag,
76 ice_ufrag, ice_pwd,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsepsessiondescription.cc 140 updated_candidate.set_username(transport_info->description.ice_ufrag);
peerconnection_unittest.cc 323 IceUfragPwdPair(transport_desc->ice_ufrag, transport_desc->ice_pwd);
326 EXPECT_NE(ufrag_pwd.first, transport_desc->ice_ufrag);
330 EXPECT_EQ(ufrag_pwd.first, transport_desc->ice_ufrag);
    [all...]
webrtcsdp_unittest.cc 925 const char ice_ufrag[] = "a=ice-ufrag"; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasession_unittest.cc 294 EXPECT_EQ(current_audio_ufrag, ti_audio->description.ice_ufrag);
298 ti_audio->description.ice_ufrag.size());
310 EXPECT_EQ(ti_audio->description.ice_ufrag,
311 ti_video->description.ice_ufrag);
316 EXPECT_EQ(current_video_ufrag, ti_video->description.ice_ufrag);
320 ti_video->description.ice_ufrag.size());
332 EXPECT_EQ(ti_audio->description.ice_ufrag,
333 ti_data->description.ice_ufrag);
338 EXPECT_EQ(current_data_ufrag, ti_data->description.ice_ufrag);
342 ti_data->description.ice_ufrag.size())
    [all...]

Completed in 892 milliseconds

1 2