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

  /external/chromium_org/net/quic/
quic_time.h 24 // QuicWallTime, below.
114 // A QuicWallTime represents an absolute time that is globally consistent. It
117 class NET_EXPORT_PRIVATE QuicWallTime {
119 // FromUNIXSeconds constructs a QuicWallTime from a count of the seconds
121 static QuicWallTime FromUNIXSeconds(uint64 seconds);
123 // Zero returns a QuicWallTime set to zero. IsZero will return true for this
125 static QuicWallTime Zero();
127 // ToUNIXSeconds converts a QuicWallTime into a count of seconds since the
131 bool IsAfter(QuicWallTime other) const;
132 bool IsBefore(QuicWallTime other) const
    [all...]
quic_time.cc 127 QuicWallTime QuicWallTime::FromUNIXSeconds(uint64 seconds) {
128 return QuicWallTime(seconds);
132 QuicWallTime QuicWallTime::Zero() {
133 return QuicWallTime(0);
136 uint64 QuicWallTime::ToUNIXSeconds() const {
140 bool QuicWallTime::IsAfter(QuicWallTime other) const {
144 bool QuicWallTime::IsBefore(QuicWallTime other) const
    [all...]

Completed in 61 milliseconds