Home
last modified time | relevance | path

Searched refs:transmitted (Results 1 – 25 of 51) sorted by relevance

123

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dreceive_statistics_unittest.cc144 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 …]
Drtp_rtcp_impl_unittest.cc417 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 …]
Dreceive_statistics_impl.cc66 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 …]
Drtp_sender_unittest.cc1132 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 …]
Drtp_rtcp_impl.cc339 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/
Dsend_statistics_proxy_unittest.cc69 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 …]
Dvie_channel.cc247 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()
Dend_to_end_tests.cc2458 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/
Dcommon_types.h861 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/
Dcontrol.wifi_wmm14 This test verifies that DUT can process datagrams transmitted at
/external/webrtc/webrtc/call/
Drampup_tests.cc255 *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/
Dwebrtcvideoengine2.cc2144 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()
Dwebrtcvideoengine2_unittest.cc2721 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/
Dhostapd.eap_user15 # is transmitted only within the encrypted tunnel in phase 2. If non-anonymous
/external/iproute2/doc/actions/
Difb-README78 3 packets transmitted, 3 packets received, 0% packet loss
Dactions-general204 2248 packets transmitted, 1811 packets received, 19% packet loss
/external/netperf/doc/examples/
Darr_script119 if [ `/etc/ping $HOST 100 1 | awk '/transmitted/{print $4}'`0 -ne 10 ]
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Dwpa_supplicant.sgml29 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/
Dwizard.txt134 component indexes denote which color component(s) are to be transmitted in
Dusage.txt159 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/
Drfc1952.txt154 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
Drfc1951.txt165 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/
DREADME.md183 each chunk was transmitted four times). Looking at,
/external/webp/
DREADME527 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/
Dspdy-draft.txt380 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

123