Lines Matching refs:timestamp_seconds
935 def __init__(self, timestamp_seconds, timestamp_ticks, u): argument
936 self._timestamp_seconds = timestamp_seconds
941 def timestamp_seconds(self): member in ActiveTimestamp
955 …return (self.timestamp_seconds == other.timestamp_seconds and self.timestamp_ticks == other.timest…
960 self.timestamp_seconds, self.timestamp_ticks, self.u)
969 timestamp_seconds = struct.unpack(">Q", bytes(seconds))[0]
972 return ActiveTimestamp(timestamp_seconds, timestamp_ticks, u)
977 def __init__(self, timestamp_seconds, timestamp_ticks, u): argument
978 self._timestamp_seconds = timestamp_seconds
983 def timestamp_seconds(self): member in PendingTimestamp
997 …return (self.timestamp_seconds == other.timestamp_seconds and self.timestamp_ticks == other.timest…
1002 self.timestamp_seconds, self.timestamp_ticks, self.u)
1011 timestamp_seconds = struct.unpack(">Q", bytes(seconds))[0]
1014 return PendingTimestamp(timestamp_seconds, timestamp_ticks, u)