/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | receive_statistics_unittest.cc | 144 EXPECT_EQ(1u, counters.transmitted.packets); in TEST_F() 149 EXPECT_EQ(2u, counters.transmitted.packets); in TEST_F() 267 MatchPacketCounter(expected.transmitted, stats_.transmitted); in Matches() 289 expected.transmitted.payload_bytes = kPacketSize1; in TEST_F() 290 expected.transmitted.header_bytes = kHeaderLength; in TEST_F() 291 expected.transmitted.padding_bytes = 0; in TEST_F() 292 expected.transmitted.packets = 1; in TEST_F() 306 expected.transmitted.payload_bytes = kPacketSize1 * 2; in TEST_F() 307 expected.transmitted.header_bytes = kHeaderLength * 2; in TEST_F() 308 expected.transmitted.padding_bytes = kPaddingLength; in TEST_F() [all …]
|
D | rtp_rtcp_impl_unittest.cc | 417 rtp.transmitted.packets = 1; in TEST_F() 418 rtp.transmitted.payload_bytes = 1; in TEST_F() 419 rtp.transmitted.header_bytes = 2; in TEST_F() 420 rtp.transmitted.padding_bytes = 3; in TEST_F() 421 EXPECT_EQ(rtp.transmitted.TotalBytes(), rtp.transmitted.payload_bytes + in TEST_F() 422 rtp.transmitted.header_bytes + in TEST_F() 423 rtp.transmitted.padding_bytes); in TEST_F() 427 rtp2.transmitted.packets = 10; in TEST_F() 428 rtp2.transmitted.payload_bytes = 10; in TEST_F() 438 EXPECT_EQ(11U, sum.transmitted.packets); in TEST_F() [all …]
|
D | receive_statistics_impl.cc | 66 receive_counters_.transmitted.AddPacket(packet_length, header); in UpdateCounters() 71 if (receive_counters_.transmitted.packets == 1) { in UpdateCounters() 83 if (receive_counters_.transmitted.packets > 1 && in UpdateCounters() 94 (receive_counters_.transmitted.packets - in UpdateCounters() 191 receive_counters_.transmitted.payload_bytes == 0) { in GetStatistics() 233 (receive_counters_.transmitted.packets - in CalculateRtcpStatistics() 275 receive_counters_.transmitted.packets - in CalculateRtcpStatistics() 287 *bytes_received = receive_counters_.transmitted.payload_bytes + in GetDataCounters() 288 receive_counters_.transmitted.header_bytes + in GetDataCounters() 289 receive_counters_.transmitted.padding_bytes; in GetDataCounters() [all …]
|
D | rtp_sender_unittest.cc | 1132 MatchPacketCounter(counters.transmitted, counters_.transmitted); in TEST_F() 1155 expected.transmitted.payload_bytes = 6; in TEST_F() 1156 expected.transmitted.header_bytes = 12; in TEST_F() 1157 expected.transmitted.padding_bytes = 0; in TEST_F() 1158 expected.transmitted.packets = 1; in TEST_F() 1169 expected.transmitted.payload_bytes = 12; in TEST_F() 1170 expected.transmitted.header_bytes = 24; in TEST_F() 1171 expected.transmitted.packets = 2; in TEST_F() 1180 expected.transmitted.payload_bytes = 12; in TEST_F() 1181 expected.transmitted.header_bytes = 36; in TEST_F() [all …]
|
D | rtp_rtcp_impl.cc | 339 state.packets_sent = rtp_stats.transmitted.packets + in GetFeedbackState() 340 rtx_stats.transmitted.packets; in GetFeedbackState() 341 state.media_bytes_sent = rtp_stats.transmitted.payload_bytes + in GetFeedbackState() 342 rtx_stats.transmitted.payload_bytes; in GetFeedbackState() 587 *bytes_sent = rtp_stats.transmitted.payload_bytes + in DataCountersRTP() 588 rtp_stats.transmitted.padding_bytes + in DataCountersRTP() 589 rtp_stats.transmitted.header_bytes + in DataCountersRTP() 590 rtx_stats.transmitted.payload_bytes + in DataCountersRTP() 591 rtx_stats.transmitted.padding_bytes + in DataCountersRTP() 592 rtx_stats.transmitted.header_bytes; in DataCountersRTP() [all …]
|
/external/webrtc/webrtc/video/ |
D | send_statistics_proxy_unittest.cc | 69 EXPECT_EQ(a.rtp_stats.transmitted.payload_bytes, in ExpectEqual() 70 b.rtp_stats.transmitted.payload_bytes); in ExpectEqual() 71 EXPECT_EQ(a.rtp_stats.transmitted.header_bytes, in ExpectEqual() 72 b.rtp_stats.transmitted.header_bytes); in ExpectEqual() 73 EXPECT_EQ(a.rtp_stats.transmitted.padding_bytes, in ExpectEqual() 74 b.rtp_stats.transmitted.padding_bytes); in ExpectEqual() 75 EXPECT_EQ(a.rtp_stats.transmitted.packets, in ExpectEqual() 76 b.rtp_stats.transmitted.packets); in ExpectEqual() 200 counters.transmitted.payload_bytes = offset; in TEST_F() 201 counters.transmitted.header_bytes = offset + 1; in TEST_F() [all …]
|
D | vie_channel.cc | 247 static_cast<int>(rtp_rtx.transmitted.TotalBytes() * 8 / elapsed_sec / in UpdateHistograms() 254 static_cast<int>(rtp_rtx.transmitted.padding_bytes * 8 / elapsed_sec / in UpdateHistograms() 263 static_cast<int>(rtx.transmitted.TotalBytes() * 8 / elapsed_sec / in UpdateHistograms() 310 static_cast<int>(rtp_rtx.transmitted.TotalBytes() * 8 / elapsed_sec / in UpdateHistograms() 317 static_cast<int>(rtp_rtx.transmitted.padding_bytes * 8 / elapsed_sec / in UpdateHistograms() 327 static_cast<int>(rtx.transmitted.TotalBytes() * 8 / elapsed_sec / in UpdateHistograms()
|
D | end_to_end_tests.cc | 2458 stats.rtp_stats.transmitted.payload_bytes != 0 || in TEST_F() 2460 stats.rtp_stats.transmitted.header_bytes != 0 || in TEST_F() 2461 stats.rtp_stats.transmitted.packets != 0 || in TEST_F() 2462 stats.rtp_stats.transmitted.padding_bytes != 0 || in TEST_F() 2522 stream_stats.rtp_stats.transmitted.padding_bytes != 0 || in TEST_F() 2524 stream_stats.rtp_stats.transmitted.packets != 0; in TEST_F() 2692 if (kNumRtpPacketsToSend == stats.rtp_stats.transmitted.packets) { in TEST_F()
|
/external/webrtc/webrtc/ |
D | common_types.h | 861 transmitted.Add(other.transmitted); in Add() 880 return transmitted.payload_bytes - retransmitted.payload_bytes - in MediaPayloadBytes() 885 RtpPacketCounter transmitted; // Number of transmitted packets/bytes. member
|
/external/autotest/server/site_tests/network_WiFi_WMM/ |
D | control.wifi_wmm | 14 This test verifies that DUT can process datagrams transmitted at
|
/external/webrtc/webrtc/call/ |
D | rampup_tests.cc | 255 *total_packets_sent += stream.rtp_stats.transmitted.packets + in AccumulateStats() 258 *total_sent += stream.rtp_stats.transmitted.TotalBytes() + in AccumulateStats() 261 *padding_sent += stream.rtp_stats.transmitted.padding_bytes + in AccumulateStats()
|
/external/webrtc/talk/media/webrtc/ |
D | webrtcvideoengine2.cc | 2144 info.bytes_sent += stream_stats.rtp_stats.transmitted.payload_bytes + in GetVideoSenderInfo() 2145 stream_stats.rtp_stats.transmitted.header_bytes + in GetVideoSenderInfo() 2146 stream_stats.rtp_stats.transmitted.padding_bytes; in GetVideoSenderInfo() 2147 info.packets_sent += stream_stats.rtp_stats.transmitted.packets; in GetVideoSenderInfo() 2522 info.bytes_rcvd = stats.rtp_stats.transmitted.payload_bytes + in GetVideoReceiverInfo() 2523 stats.rtp_stats.transmitted.header_bytes + in GetVideoReceiverInfo() 2524 stats.rtp_stats.transmitted.padding_bytes; in GetVideoReceiverInfo() 2525 info.packets_rcvd = stats.rtp_stats.transmitted.packets; in GetVideoReceiverInfo()
|
D | webrtcvideoengine2_unittest.cc | 2721 stats.rtp_stats.transmitted.payload_bytes = 2; in TEST_F() 2722 stats.rtp_stats.transmitted.header_bytes = 3; in TEST_F() 2723 stats.rtp_stats.transmitted.padding_bytes = 4; in TEST_F() 2724 stats.rtp_stats.transmitted.packets = 5; in TEST_F() 2731 EXPECT_EQ(stats.rtp_stats.transmitted.payload_bytes + in TEST_F() 2732 stats.rtp_stats.transmitted.header_bytes + in TEST_F() 2733 stats.rtp_stats.transmitted.padding_bytes, in TEST_F() 2735 EXPECT_EQ(stats.rtp_stats.transmitted.packets, in TEST_F()
|
/external/wpa_supplicant_8/hostapd/ |
D | hostapd.eap_user | 15 # is transmitted only within the encrypted tunnel in phase 2. If non-anonymous
|
/external/iproute2/doc/actions/ |
D | ifb-README | 78 3 packets transmitted, 3 packets received, 0% packet loss
|
D | actions-general | 204 2248 packets transmitted, 1811 packets received, 19% packet loss
|
/external/netperf/doc/examples/ |
D | arr_script | 119 if [ `/etc/ping $HOST 100 1 | awk '/transmitted/{print $4}'`0 -ne 10 ]
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
D | wpa_supplicant.sgml | 29 users to passively monitor a network and capture all transmitted frames. 127 <para>normal data packets can be transmitted and received</para>
|
/external/libjpeg-turbo/ |
D | wizard.txt | 134 component indexes denote which color component(s) are to be transmitted in
|
D | usage.txt | 159 file is being transmitted over a slow communications link, the decoder can use 225 will be transmitted across unreliable networks such as Usenet.
|
/external/zlib/src/doc/ |
D | rfc1952.txt | 154 byte: 8 bits stored or transmitted as a unit (same as an octet). 207 bits of a byte are transmitted on a bit-sequential medium, since
|
D | rfc1951.txt | 165 Byte: 8 bits stored or transmitted as a unit (same as an octet). 277 bits of a byte are transmitted on a bit-sequential medium,
|
/external/tcpdump/ |
D | README.md | 183 each chunk was transmitted four times). Looking at,
|
/external/webp/ |
D | README | 527 In the case when data is being progressively transmitted, pictures can still 547 or by just mentioning the new size of the transmitted data:
|
/external/libmicrohttpd/src/datadir/ |
D | spdy-draft.txt | 380 frame to be transmitted on this stream. See Stream Close 702 transmitted on this stream and puts the sender in the half-closed 771 transmitted on this stream and puts the sender in the half-closed 999 retransmitted / total bytes transmitted). 1202 transmitted on this stream and puts the sender in the half-closed 1240 transmitted, the sender begins with the initial window size. This 1245 of data transmitted. When the window size becomes less than or equal 2428 transmitted information about the communication between client and
|