Home
last modified time | relevance | path

Searched refs:DateTimeFromSeconds (Results 1 – 7 of 7) sorted by relevance

/external/openscreen/cast/common/certificate/
Dcast_crl.cc95 if (!DateTimeFromSeconds(tbs_crl.not_before_seconds(), &not_before)) { in VerifyCRL()
99 if (!DateTimeFromSeconds(tbs_crl.not_after_seconds(), &not_after)) { in VerifyCRL()
144 DateTimeFromSeconds(tbs_crl.not_before_seconds(), &not_before_); in CastCRL()
145 DateTimeFromSeconds(tbs_crl.not_after_seconds(), &not_after_); in CastCRL()
Dtypes.h31 bool DateTimeFromSeconds(uint64_t seconds, DateTime* time);
Dcast_crl_unittest.cc119 EXPECT_TRUE(DateTimeFromSeconds(test_case.cert_verification_time_seconds(), in RunTest()
124 EXPECT_TRUE(DateTimeFromSeconds(crl_verify_time, &crl_verification_time)); in RunTest()
Dtypes.cc50 bool DateTimeFromSeconds(uint64_t seconds, DateTime* time) { in DateTimeFromSeconds() function
Dcast_cert_validator_unittest.cc618 DateTimeFromSeconds(seconds.count(), &converted_date); in TEST()
/external/openscreen/cast/sender/channel/
Dcast_auth_util.cc206 OSP_CHECK(DateTimeFromSeconds(verification_time.count(), in VerifyTLSCertificateValidity()
209 DateTimeFromSeconds(lifetime_limit.count(), &lifetime_limit_exploded)); in VerifyTLSCertificateValidity()
287 OSP_CHECK(DateTimeFromSeconds(GetWallTimeSinceUnixEpoch().count(), &now)); in AuthenticateChallengeReply()
393 OSP_CHECK(DateTimeFromSeconds(GetWallTimeSinceUnixEpoch().count(), &now)); in VerifyCredentials()
Dcast_auth_util_unittest.cc181 ASSERT_TRUE(DateTimeFromSeconds(GetWallTimeSinceUnixEpoch().count(), &now)); in TEST_F()
238 ASSERT_TRUE(DateTimeFromSeconds(GetWallTimeSinceUnixEpoch().count(), &now)); in TEST_F()
251 ASSERT_TRUE(DateTimeFromSeconds(GetWallTimeSinceUnixEpoch().count(), &now)); in TEST_F()
419 OSP_DCHECK(DateTimeFromSeconds(cert_verify_time, &verification_time)); in RunTest()