HomeSort by relevance Sort by last modified time
    Searched refs:packet_count (Results 1 - 20 of 20) sorted by null

  /external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
before_streaming_fixture.h 44 // Waits until packet_count packetes have been processed by recipient.
45 void WaitForTransmittedPackets(int32_t packet_count);
before_streaming_fixture.cc 59 void BeforeStreamingFixture::WaitForTransmittedPackets(int32_t packet_count) {
60 transport_->WaitForTransmittedPackets(packet_count);
after_initialization_fixture.h 54 void WaitForTransmittedPackets(int32_t packet_count) {
58 int32_t limit = transmitted_packets_.Value() + packet_count;
  /external/libpcap/testprogs/
selpolltest.c 80 int packet_count; local
245 packet_count = 0;
247 (u_char *)&packet_count);
257 if (status != 0 || packet_count != 0 ||
260 status, packet_count);
309 packet_count = 0;
311 (u_char *)&packet_count);
321 if (status != 0 || packet_count != 0 ||
324 status, packet_count);
330 packet_count = 0
    [all...]
capturetest.c 77 int packet_count; local
183 packet_count = 0;
185 (u_char *)&packet_count);
190 status, packet_count);
threadsignaltest.c 131 int packet_count; local
149 packet_count = 0;
151 (u_char *)&packet_count);
156 status, packet_count);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
packet_loss_stats.cc 59 int packet_count, unused1, unused2; local
60 ComputeLossCounts(&unused1, &unused2, &packet_count);
61 return packet_count;
rtcp_packet.h 171 void WithPacketCount(uint32_t packet_count) {
172 sr_.SenderPacketCount = packet_count;
  /external/iperf3/src/
iperf_udp.c 109 fprintf(stderr, "pcount %" PRIu64 " packet_count %d\n", pcount, sp->packet_count);
120 * and sp->packet_count is the highest sequence number seen so
122 * sp->packet_count + 1 arrive next).
124 if (pcount >= sp->packet_count + 1) {
127 if (pcount > sp->packet_count + 1) {
129 sp->cnt_error += (pcount - 1) - sp->packet_count;
132 sp->packet_count = pcount;
152 fprintf(stderr, "OUT OF ORDER - incoming packet sequence %" PRIu64 " but expected sequence %d on stream %d", pcount, sp->packet_count, sp->socket);
198 ++sp->packet_count;
    [all...]
iperf.h 84 int packet_count; member in struct:iperf_interval_results
188 int packet_count; member in struct:iperf_stream
iperf_api.c 3025 int packet_count = sender_packet_count ? sender_packet_count : receiver_packet_count; local
3092 int packet_count = sender_packet_count ? sender_packet_count : receiver_packet_count; local
    [all...]
  /external/bcc/examples/networking/http_filter/
http-parse-complete.py 140 packet_count = 0 variable
150 packet_count += 1
297 if (((packet_count) % CLEANUP_N_PACKETS) == 0):
  /external/perfetto/src/perfetto_cmd/
packet_writer_unittest.cc 209 size_t packet_count = 0; local
217 packet_count++;
222 EXPECT_EQ(packet_count, 200 * 2);
266 size_t packet_count = 0; local
274 EXPECT_EQ(subpacket.for_testing().seq_value(), packet_count++);
278 EXPECT_EQ(packet_count, 1000);
  /external/perfetto/include/perfetto/tracing/core/
shared_memory_abi.h 395 // Increases |packets.count| to the given |packet_count|, but only if
396 // |packet_count| is larger than the current value of |packets.count|.
399 uint16_t IncreasePacketCountTo(uint16_t packet_count) {
402 if (packets.count < packet_count)
403 packets.count = packet_count;
  /external/libusb/libusb/os/
haiku_usb_raw.h 176 uint32 packet_count; member in struct:__anon29600::__anon29615
haiku_usb_backend.cpp 126 command.isochronous.packet_count = fLibusbTransfer->num_iso_packets;
  /external/openssh/regress/misc/kexfuzz/
kexfuzz.c 52 int *packet_count = mydirection == S2C ? ctx->s2c : ctx->c2s; local
59 *packet_count, *typep);
63 ctx->packet_index == *packet_count) {
95 (*packet_count)++;
  /external/perfetto/src/tracing/core/
startup_trace_writer_unittest.cc 65 void WritePackets(StartupTraceWriter* writer, size_t packet_count) {
66 for (size_t i = 0; i < packet_count; i++) {
tracing_service_impl.cc 1234 uint16_t packet_count; local
    [all...]
  /external/autotest/server/cros/chaos_lib/
chaos_capture_analyzer.py 614 packet_count = capture.count_packets_from(bssids)
615 if not packet_count:
621 (bssids, packet_count))

Completed in 709 milliseconds