HomeSort by relevance Sort by last modified time
    Searched refs:packets (Results 1 - 25 of 189) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/media/cast/net/pacing/
mock_paced_packet_sender.h 19 MOCK_METHOD1(SendPackets, bool(const PacketList& packets));
20 MOCK_METHOD1(ResendPackets, bool(const PacketList& packets));
paced_sender.h 27 // Inform the pacer / sender of the total number of packets.
28 virtual bool SendPackets(const PacketList& packets) = 0;
30 virtual bool ResendPackets(const PacketList& packets) = 0;
45 virtual bool SendPackets(const PacketList& packets) OVERRIDE;
47 virtual bool ResendPackets(const PacketList& packets) OVERRIDE;
56 // Process any pending packets in the queue(s).
60 bool SendPacketsToTransport(const PacketList& packets,
70 // since then we might get reordering of the retransmitted packets.
paced_sender.cc 15 // bursts of packets.
30 bool PacedSender::SendPackets(const PacketList& packets) {
33 packets);
34 return SendPacketsToTransport(packets, &packet_list_);
37 bool PacedSender::ResendPackets(const PacketList& packets) {
40 packets);
41 return SendPacketsToTransport(packets, &resend_packet_list_);
44 bool PacedSender::SendPacketsToTransport(const PacketList& packets,
47 UpdateBurstSize(packets.size());
51 packets.begin(), packets.end())
    [all...]
paced_sender_unittest.cc 25 virtual bool SendPackets(const PacketList& packets) OVERRIDE {
26 PacketList::const_iterator it = packets.begin();
27 for (; it != packets.end(); ++it) {
68 PacketList packets; local
70 packets.push_back(Packet(packet_size, kValue));
72 return packets;
84 PacketList packets = CreatePacketList(kSize1, 1); local
86 EXPECT_TRUE(paced_sender_->SendPackets(packets));
87 EXPECT_TRUE(paced_sender_->ResendPackets(packets));
95 PacketList packets = CreatePacketList(kSize1, num_of_packets) local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
Transcript.java 39 private List<Packet> packets; field in class:Transcript
48 this.packets = new ArrayList<Packet>();
52 * Creates a new transcript for the given sessionID and list of packets. The list of packets
56 * @param packets the list of messages and presences send to the room.
58 public Transcript(String sessionID, List<Packet> packets) {
60 this.packets = packets;
79 return Collections.unmodifiableList(packets);
89 for (Iterator<Packet> it=packets.iterator(); it.hasNext();) {
    [all...]
TranscriptProvider.java 44 List<Packet> packets = new ArrayList<Packet>(); local
51 packets.add(PacketParserUtils.parseMessage(parser));
54 packets.add(PacketParserUtils.parsePresence(parser));
64 return new Transcript(sessionID, packets);
  /external/chromium_org/media/cast/net/rtp_sender/packet_storage/
packet_storage_unittest.cc 35 PacketList packets; local
43 // All packets belonging to the first 14 frames is expected to be expired.
47 EXPECT_FALSE(packet_storage_.GetPacket(frame_id, packet_id, &packets));
50 // All packets belonging to the next 15 frames is expected to be valid.
53 EXPECT_TRUE(packet_storage_.GetPacket(frame_id, packet_id, &packets));
54 EXPECT_TRUE(packets.front() == test_123);
61 PacketList packets; local
70 EXPECT_FALSE(packet_storage_.GetPacket(frame_id, packet_id, &packets));
74 EXPECT_TRUE(packet_storage_.GetPacket(frame_id, packet_id, &packets));
75 EXPECT_TRUE(packets.back() == test_123)
82 PacketList packets; local
    [all...]
  /external/speex/libspeex/
jitter.c 41 - Linked list structure for holding the packets instead of the current fixed-size array
67 #define SPEEX_JITTER_MAX_BUFFER_SIZE 200 /**< Maximum number of packets in jitter buffer */
82 /** Buffer that keeps the time of arrival of the latest packets */
86 spx_int32_t timing[MAX_TIMINGS]; /**< Sorted list of all timings ("latest" packets first) */
87 spx_int16_t counts[MAX_TIMINGS]; /**< Order the packets were put in (will be used for short-term estimate) */
145 JitterBufferPacket packets[SPEEX_JITTER_MAX_BUFFER_SIZE]; /**< Packets stored in the buffer */ member in struct:JitterBuffer_
162 int max_late_rate; /**< Absolute maximum amount of late packets tolerable (in percent) */
163 int latency_tradeoff; /**< Latency equivalent of losing one percent of packets */
164 int auto_tradeoff; /**< Latency equivalent of losing one percent of packets (automatic default) *
    [all...]
  /external/iproute2/include/linux/
gen_stats.h 19 * @packets: number of seen packets
23 __u32 packets; member in struct:gnet_stats_basic
27 __u32 packets; member in struct:gnet_stats_basic_packed
44 * @drops: number of dropped packets
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/auth/
AuthenticationManager.java 14 import ch.ethz.ssh2.packets.PacketServiceAccept;
15 import ch.ethz.ssh2.packets.PacketServiceRequest;
16 import ch.ethz.ssh2.packets.PacketUserauthBanner;
17 import ch.ethz.ssh2.packets.PacketUserauthFailure;
18 import ch.ethz.ssh2.packets.PacketUserauthInfoRequest;
19 import ch.ethz.ssh2.packets.PacketUserauthInfoResponse;
20 import ch.ethz.ssh2.packets.PacketUserauthRequestInteractive;
21 import ch.ethz.ssh2.packets.PacketUserauthRequestNone;
22 import ch.ethz.ssh2.packets.PacketUserauthRequestPassword;
23 import ch.ethz.ssh2.packets.PacketUserauthRequestPublicKey
45 private final List<byte[]> packets = new Vector<byte[]>(); field in class:AuthenticationManager
    [all...]
  /external/eigen/test/eigen2/
eigen2_packetmath.cpp 51 EIGEN_ALIGN_128 Packet packets[PacketSize*2]; local
76 packets[0] = ei_pload(data1);
77 packets[1] = ei_pload(data1+PacketSize);
78 if (offset==0) ei_palign<0>(packets[0], packets[1]);
79 else if (offset==1) ei_palign<1>(packets[0], packets[1]);
80 else if (offset==2) ei_palign<2>(packets[0], packets[1]);
81 else if (offset==3) ei_palign<3>(packets[0], packets[1])
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketKexDHInit.java 5 package ch.ethz.ssh2.packets;
31 tw.writeByte(Packets.SSH_MSG_KEXDH_INIT);
PacketKexDhGexInit.java 5 package ch.ethz.ssh2.packets;
31 tw.writeByte(Packets.SSH_MSG_KEX_DH_GEX_INIT);
PacketKexDhGexRequestOld.java 5 package ch.ethz.ssh2.packets;
31 tw.writeByte(Packets.SSH_MSG_KEX_DH_GEX_REQUEST_OLD);
PacketSessionStartShell.java 5 package ch.ethz.ssh2.packets;
31 tw.writeByte(Packets.SSH_MSG_CHANNEL_REQUEST);
PacketUserauthInfoResponse.java 5 package ch.ethz.ssh2.packets;
29 tw.writeByte(Packets.SSH_MSG_USERAUTH_INFO_RESPONSE);
PacketGlobalCancelForwardRequest.java 5 package ch.ethz.ssh2.packets;
33 tw.writeByte(Packets.SSH_MSG_GLOBAL_REQUEST);
PacketGlobalForwardRequest.java 5 package ch.ethz.ssh2.packets;
33 tw.writeByte(Packets.SSH_MSG_GLOBAL_REQUEST);
PacketKexDhGexRequest.java 5 package ch.ethz.ssh2.packets;
35 tw.writeByte(Packets.SSH_MSG_KEX_DH_GEX_REQUEST);
PacketNewKeys.java 5 package ch.ethz.ssh2.packets;
32 if (packet_type != Packets.SSH_MSG_NEWKEYS)
45 tw.writeByte(Packets.SSH_MSG_NEWKEYS);
PacketSessionSubsystemRequest.java 5 package ch.ethz.ssh2.packets;
33 tw.writeByte(Packets.SSH_MSG_CHANNEL_REQUEST);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
gen_stats.h 19 * @packets: number of seen packets
24 __u32 packets; member in struct:gnet_stats_basic
42 * @drops: number of dropped packets
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
gen_stats.h 19 * @packets: number of seen packets
24 __u32 packets; member in struct:gnet_stats_basic
42 * @drops: number of dropped packets
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
gen_stats.h 19 * @packets: number of seen packets
24 __u32 packets; member in struct:gnet_stats_basic
42 * @drops: number of dropped packets
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.cpp 123 const List<sp<ABuffer> > &packets) {
125 for (List<sp<ABuffer> >::const_iterator it = packets.begin();
126 it != packets.end(); ++it) {
132 for (List<sp<ABuffer> >::const_iterator it = packets.begin();
133 it != packets.end(); ++it) {
139 CopyTimes(accessUnit, *packets.begin());

Completed in 774 milliseconds

1 2 3 4 5 6 7 8