Searched defs:ip_addrs (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/net/cert/
H A Dcert_verify_proc.cc226 std::vector<std::string> dns_names, ip_addrs; local
227 cert->GetSubjectAltName(&dns_names, &ip_addrs);
231 ip_addrs)) {
521 const std::vector<std::string>& ip_addrs) {
598 if (dns_names.empty() && ip_addrs.empty()) {
517 HasNameConstraintsViolation( const HashValueVector& public_key_hashes, const std::string& common_name, const std::vector<std::string>& dns_names, const std::vector<std::string>& ip_addrs) argument
H A Dx509_certificate.cc659 std::vector<std::string> dns_names, ip_addrs; local
660 GetSubjectAltName(&dns_names, &ip_addrs);
661 return VerifyHostname(hostname, subject_.common_name, dns_names, ip_addrs,
H A Dx509_util_nss.cc449 std::vector<std::string>* ip_addrs) {
452 if (ip_addrs)
453 ip_addrs->clear();
478 } else if (ip_addrs && name->type == certIPAddress) {
479 ip_addrs->push_back(std::string(
447 GetSubjectAltName(CERTCertificate* cert_handle, std::vector<std::string>* dns_names, std::vector<std::string>* ip_addrs) argument
H A Dx509_certificate_unittest.cc902 // Common name, may be used if |dns_names| or |ip_addrs| are empty.
909 const char* ip_addrs; member in struct:net::CertificateNameVerifyTestData
923 << "; ip_addrs: " << base::StringPiece(data.ip_addrs);
1083 if (test_data.ip_addrs) {
1085 std::string ip_addrs_line(test_data.ip_addrs);

Completed in 109 milliseconds