/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
port.cc | 167 const std::string& username_fragment, const std::string& password) 177 ice_username_fragment_(username_fragment), 192 int min_port, int max_port, const std::string& username_fragment, 204 ice_username_fragment_(username_fragment), 218 // If the username_fragment and password are empty, we should just create one. 264 c.set_username(username_fragment()); 386 local_ufrag != username_fragment()) { 479 remote_frag_len -= static_cast<int>(username_fragment().size()); 483 *local_ufrag = username_attr_str.substr(0, username_fragment().size()); 485 username_fragment().size(), username_attr_str.size()) 726 const std::string Port::username_fragment() const { function in class:cricket::Port [all...] |
port.h | 120 const std::string& username_fragment, const std::string& password); 124 int min_port, int max_port, const std::string& username_fragment, 191 // To resolve this problem, we implemented the username_fragment(), 194 // username_fragment() simply returns |ice_username_fragment_| when running 200 const std::string username_fragment() const; 372 // authenticated with this username_fragment and password. 373 // PortAllocatorSession will provide these username_fragment and password. 375 // Note: we should always use username_fragment() instead of using 377 // username_fragment().
|
relayport.cc | 592 username_attr->CopyBytes(port_->username_fragment().c_str(), 593 port_->username_fragment().size()); 793 entry_->port()->username_fragment().c_str(), 794 entry_->port()->username_fragment().size());
|
port_unittest.cc | 122 const std::string& username_fragment, const std::string& password) 124 min_port, max_port, username_fragment, password) { 622 EXPECT_EQ(ch2.remote_fragment(), port1->username_fragment()); [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
relayport.cc | 548 username_attr->CopyBytes(port_->username_fragment().c_str(), 549 port_->username_fragment().size()); 744 entry_->port()->username_fragment().c_str(), 745 entry_->port()->username_fragment().size());
|
port.h | 101 // TODO: Change this to "username" rather than "username_fragment". 102 const std::string& username_fragment() const { return username_frag_; } function in class:cricket::Port
|
port.cc | 477 username.append(connection_->port()->username_fragment());
|