Lines Matching refs:timestamp_seconds
936 def __init__(self, timestamp_seconds, timestamp_ticks, u): argument
937 self._timestamp_seconds = timestamp_seconds
942 def timestamp_seconds(self): member in ActiveTimestamp
956 …return (self.timestamp_seconds == other.timestamp_seconds and self.timestamp_ticks == other.timest…
961 self.timestamp_seconds, self.timestamp_ticks, self.u)
970 timestamp_seconds = struct.unpack(">Q", bytes(seconds))[0]
973 return ActiveTimestamp(timestamp_seconds, timestamp_ticks, u)
978 def __init__(self, timestamp_seconds, timestamp_ticks, u): argument
979 self._timestamp_seconds = timestamp_seconds
984 def timestamp_seconds(self): member in PendingTimestamp
998 …return (self.timestamp_seconds == other.timestamp_seconds and self.timestamp_ticks == other.timest…
1003 self.timestamp_seconds, self.timestamp_ticks, self.u)
1012 timestamp_seconds = struct.unpack(">Q", bytes(seconds))[0]
1015 return PendingTimestamp(timestamp_seconds, timestamp_ticks, u)