IsSupportedValidityRange   37 net/cert/x509_util.h NET_EXPORT_PRIVATE bool IsSupportedValidityRange(base::Time not_valid_before,
IsSupportedValidityRange   90 net/cert/x509_util_openssl_unittest.cc TEST(X509UtilOpenSSLTest, IsSupportedValidityRange) {
IsSupportedValidityRange   92 net/cert/x509_util_openssl_unittest.cc   EXPECT_TRUE(x509_util::IsSupportedValidityRange(now, now));
IsSupportedValidityRange   93 net/cert/x509_util_openssl_unittest.cc   EXPECT_FALSE(x509_util::IsSupportedValidityRange(
IsSupportedValidityRange  108 net/cert/x509_util_openssl_unittest.cc   EXPECT_FALSE(x509_util::IsSupportedValidityRange(too_old, too_old));
IsSupportedValidityRange  109 net/cert/x509_util_openssl_unittest.cc   EXPECT_FALSE(x509_util::IsSupportedValidityRange(too_old, now));
IsSupportedValidityRange  111 net/cert/x509_util_openssl_unittest.cc   EXPECT_FALSE(x509_util::IsSupportedValidityRange(now, too_late));
IsSupportedValidityRange  112 net/cert/x509_util_openssl_unittest.cc   EXPECT_FALSE(x509_util::IsSupportedValidityRange(too_late, too_late));
IsSupportedValidityRange  380 net/ssl/server_bound_cert_service.cc   is_system_time_valid_ = x509_util::IsSupportedValidityRange(start, end);