Home
last modified time | relevance | path

Searched refs:ntp_timestamp (Results 1 – 4 of 4) sorted by relevance

/external/openscreen/cast/streaming/
Dntp_time_unittest.cc90 const NtpTimestamp ntp_timestamp = converter.ToNtpTimestamp(t); in TEST() local
91 ASSERT_GT(ntp_timestamp, last_ntp_timestamp); in TEST()
92 last_ntp_timestamp = ntp_timestamp; in TEST()
95 converter.ToLocalTime(ntp_timestamp); in TEST()
Dsender_report_parser.cc53 const NtpTimestamp ntp_timestamp = ConsumeField<uint64_t>(&chunk); in Parse() local
54 report.report_id = ToStatusReportId(ntp_timestamp); in Parse()
56 session_->ntp_converter().ToLocalTime(ntp_timestamp); in Parse()
Dsender_report_builder.cc39 const NtpTimestamp ntp_timestamp = in BuildPacket() local
41 AppendField<uint64_t>(ntp_timestamp, &buffer); in BuildPacket()
52 ToStatusReportId(ntp_timestamp)); in BuildPacket()
Drtcp_common.h59 constexpr StatusReportId ToStatusReportId(NtpTimestamp ntp_timestamp) { in ToStatusReportId() argument
60 return static_cast<uint32_t>(ntp_timestamp >> 16); in ToStatusReportId()