Home
last modified time | relevance | path

Searched refs:CumulativeNumOfPacketsLost (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
Drtcp_utility.cc595 _packet.ReportBlockItem.CumulativeNumOfPacketsLost = *_ptrRTCPData++ << 16; in ParseReportBlockItem()
596 _packet.ReportBlockItem.CumulativeNumOfPacketsLost += *_ptrRTCPData++ << 8; in ParseReportBlockItem()
597 _packet.ReportBlockItem.CumulativeNumOfPacketsLost += *_ptrRTCPData++; in ParseReportBlockItem()
Drtcp_utility.h51 uint32_t CumulativeNumOfPacketsLost; member
Drtcp_packet.h129 report_block_.CumulativeNumOfPacketsLost = cumulative_lost; in WithCumulativeLost()
Drtcp_packet.cc173 AssignUWord24(buffer, pos, (*it).CumulativeNumOfPacketsLost); in CreateReportBlocks()
Drtcp_receiver.cc520 rb.CumulativeNumOfPacketsLost; in HandleReportBlock()
/external/chromium_org/third_party/webrtc/test/
Drtcp_packet_parser.h87 uint32_t CumPacketLost() const { return rb_.CumulativeNumOfPacketsLost; } in CumPacketLost()