Searched refs:password_ (Results 1 – 12 of 12) sorted by relevance
/external/cronet/net/base/ |
D | auth.cc | 26 : username_(username), password_(password) {} in AuthCredentials() 33 password_ = password; in Set() 37 return username_ == other.username_ && password_ == other.password_; in Equals() 41 return username_.empty() && password_.empty(); in Empty()
|
D | auth.h | 66 const std::u16string& password() const { return password_; } in password() 77 std::u16string password_; variable
|
/external/webrtc/api/ |
D | candidate.cc | 47 password_(password), in Candidate() 66 (password_ == c.password_) && (type_ == c.type_) && in IsEquivalent() 84 << password_ << ":" << network_id_ << ":" << network_cost_ << ":" in ToStringInternal() 121 username_ == o.username_ && password_ == o.password_ && in operator ==()
|
D | candidate.h | 100 const std::string& password() const { return password_; } in password() 101 void set_password(absl::string_view password) { Assign(password_, password); } in set_password() 205 std::string password_; variable
|
/external/webrtc/p2p/base/ |
D | port.cc | 128 password_(password), in Port() 159 password_(password), in Port() 176 RTC_DCHECK(password_.empty()); in Construct() 178 password_ = rtc::CreateRandomString(ICE_PWD_LENGTH); in Construct() 227 password_ = std::string(password); in SetIceParameters() 271 Candidate c(component_, protocol, address, 0U, username_fragment(), password_, in AddAddress() 491 if (stun_msg->ValidateMessageIntegrity(password_) != in GetStunMessage() 496 << ", password_=" << password_; in GetStunMessage() 558 if (stun_msg->ValidateMessageIntegrity(password_) != in GetStunMessage() 563 << ", password_=" << password_; in GetStunMessage() [all …]
|
D | tcp_port_unittest.cc | 77 password_(rtc::CreateRandomString(ICE_PWD_LENGTH)) {} in TCPPortTest() 88 username_, password_, true, &field_trials_)); in CreateTCPPort() 96 password_, true, &field_trials_)); in CreateTCPPort() 110 std::string password_; member in TCPPortTest
|
D | port.h | 259 const std::string& password() const { return password_; } in password() 504 std::string password_; variable
|
D | port_unittest.cc | 418 password_(rtc::CreateRandomString(ICE_PWD_LENGTH)), in PortTest() 430 std::string password() { return password_; } in password() 539 username_, password_, true, absl::nullopt, in CreateUdpPort() 553 0, 0, username_, password_, true, absl::nullopt, &field_trials); in CreateUdpPortMultipleAddrs() 563 username_, password_, true, &field_trials_); in CreateTcpPort() 572 username_, password_, stun_servers, in CreateStunPort() 605 args.password = password_; in CreateTurnPort() 871 std::string password_; member in cricket::PortTest
|
/external/zlib/google/ |
D | zip_reader.h | 177 void SetPassword(std::string password) { password_ = std::move(password); } in SetPassword() 310 std::string password_; variable
|
D | zip_reader.cc | 361 entry_.is_encrypted ? password_.c_str() : nullptr; in ExtractCurrentEntry() 477 entry_.is_encrypted ? password_.c_str() : nullptr; in ExtractCurrentEntryToFilePathAsync()
|
/external/webrtc/api/transport/ |
D | stun.h | 240 return password_; in password() 340 std::string password_; variable
|
D | stun.cc | 244 password_ = password; in ValidateMessageIntegrity() 502 password_ = std::string(key); in AddMessageIntegrityOfType()
|