Home
last modified time | relevance | path

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

1234

/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 …]
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 …]
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_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/grpc-grpc/src/python/grpcio_tests/tests/unit/
Dtest_common.py62 transmitted = collections.defaultdict(list)
64 transmitted[key].append(value)
67 transmitted_values = transmitted[key]
/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_wmm13 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/epid-sdk/ext/ipp/sources/ippcp/
Dpcpver.rc14 * modified, published, uploaded, posted, transmitted, distributed or disclosed
/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/bcc/examples/networking/tunnel_monitor/
DREADME.md6 and packets received/transmitted. One novel part of this program is its use of
/external/grpc-grpc/doc/
Dstatuscodes.md27 | Some data transmitted (e.g., request metadata written to TCP connection) before connection breaks…
/external/bcc/tools/
Dtcplife_example.txt60 You can see the 10 Mbytes received by sshd, and then later transmitted. Looks
Dtcptop_example.txt27 shows PID 16647, sshd, transmitted 2149 Kbytes during the tracing interval.
/external/python/cpython2/Doc/library/
Dtermios.rst60 Wait until all output written to file descriptor *fd* has been transmitted.
/external/python/cpython3/Doc/library/
Dtermios.rst60 Wait until all output written to file descriptor *fd* has been transmitted.
/external/wpa_supplicant_8/hostapd/
Dhostapd.eap_user15 # is transmitted only within the encrypted tunnel in phase 2. If non-anonymous
/external/syzkaller/docs/linux/
Dsetup.md51 - The program files for the fuzzer processes are transmitted into the VM using SSH, so the VM image
/external/epid-sdk/ext/ipp/sources/include/
Dasmdefs.inc14 ; modified, published, uploaded, posted, transmitted, distributed or disclosed
/external/cros/system_api/dbus/cryptohome/
Dkey.proto109 // representation is transmitted in the |secret| field of the Key message.

1234