Lines Matching full:timestamp
17 // Signed Certificate Timestamp (SCT) Version length
288 bool EncodeV1SCTSignedData(const base::Time& timestamp,
296 base::TimeDelta time_since_epoch = timestamp - base::Time::UnixEpoch();
333 uint64 timestamp;
337 !ReadUint(kTimestampLength, input, ×tamp) ||
344 if (timestamp > static_cast<uint64>(kint64max)) {
345 DVLOG(1) << "Timestamp value too big to cast to int64: " << timestamp;
351 result->timestamp =
353 base::TimeDelta::FromMilliseconds(static_cast<int64>(timestamp));