HomeSort by relevance Sort by last modified time
    Searched refs:QuicWallTime (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/net/quic/crypto/
crypto_server_config_protobuf.cc 13 : primary_time_(QuicWallTime::Zero().ToUNIXSeconds()) {
crypto_server_config.h 54 QuicWallTime expiry_time;
92 QuicWallTime now);
110 QuicWallTime now);
232 // primary config. A value of QuicWallTime::Zero() means that this config
234 QuicWallTime primary_time;
252 void SelectNewPrimaryConfig(QuicWallTime now) const;
281 QuicWallTime now) const;
288 QuicWallTime now) const;
291 std::string NewServerNonce(QuicRandom* rand, QuicWallTime now) const;
299 QuicWallTime now) const
    [all...]
crypto_utils.h 36 static void GenerateNonce(QuicWallTime now,
crypto_handshake_test.cc 36 QuicWallTime now) {
42 QuicWallTime now) {
140 QuicWallTime::FromUNIXSeconds(seconds));
174 QuicWallTime now = clock.WallNow();
175 const QuicWallTime original_time = now;
crypto_server_config.cc 47 : expiry_time(QuicWallTime::Zero()),
56 next_config_promotion_time_(QuicWallTime::Zero()),
122 const QuicWallTime now = clock->WallNow();
123 const QuicWallTime expiry = now.Add(QuicTime::Delta::FromSeconds(
168 const QuicWallTime now) {
211 const QuicWallTime now) {
285 ClientHelloInfo(const IPEndPoint& in_client_ip, QuicWallTime in_now)
294 const QuicWallTime now;
319 const QuicWallTime now(clock->WallNow());
527 const QuicWallTime now) const
    [all...]
crypto_handshake.h 248 bool IsComplete(QuicWallTime now) const;
259 QuicWallTime now,
344 QuicWallTime now,
358 QuicWallTime now,
crypto_utils.cc 23 void CryptoUtils::GenerateNonce(QuicWallTime now,
crypto_handshake.cc 369 bool QuicCryptoClientConfig::CachedState::IsComplete(QuicWallTime now) const {
404 StringPiece server_config, QuicWallTime now, string* error_details) {
616 QuicWallTime now,
793 QuicWallTime now,
  /external/chromium_org/net/quic/
quic_clock.h 32 virtual QuicWallTime WallNow() const;
quic_time.cc 103 QuicWallTime QuicWallTime::FromUNIXSeconds(uint64 seconds) {
104 return QuicWallTime(seconds);
108 QuicWallTime QuicWallTime::Zero() {
109 return QuicWallTime(0);
112 uint64 QuicWallTime::ToUNIXSeconds() const {
116 bool QuicWallTime::IsAfter(QuicWallTime other) const {
120 bool QuicWallTime::IsBefore(QuicWallTime other) const
    [all...]
quic_clock.cc 25 QuicWallTime QuicClock::WallNow() const {
26 return QuicWallTime::FromUNIXSeconds(base::Time::Now().ToTimeT());
quic_time.h 24 // QuicWallTime, below.
102 // A QuicWallTime represents an absolute time that is globally consistent. It
105 class NET_EXPORT_PRIVATE QuicWallTime {
107 // FromUNIXSeconds constructs a QuicWallTime from a count of the seconds
109 static QuicWallTime FromUNIXSeconds(uint64 seconds);
111 // Zero returns a QuicWallTime set to zero. IsZero will return true for this
113 static QuicWallTime Zero();
115 // ToUNIXSeconds converts a QuicWallTime into a count of seconds since the
119 bool IsAfter(QuicWallTime other) const;
120 bool IsBefore(QuicWallTime other) const
    [all...]
quic_clock_test.cc 27 QuicWallTime now = clock.WallNow();
  /external/chromium_org/net/quic/test_tools/
mock_clock.cc 27 QuicWallTime MockClock::WallNow() const {
28 return QuicWallTime::FromUNIXSeconds(
mock_clock.h 28 virtual QuicWallTime WallNow() const OVERRIDE;
  /external/chromium_org/net/tools/quic/
quic_epoll_clock_test.cc 45 QuicWallTime now = clock.WallNow();

Completed in 209 milliseconds