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

1 2 3 4 5 6 7

  /external/chromium_org/media/cast/transport/rtp_sender/packet_storage/
packet_storage_unittest.cc 22 // First frame has 1 packet, second frame has 2 packets, etc.
29 SendPacketVector packets; local
30 // First frame has 1 packet, second frame has 2 packets, etc.
34 packets.push_back(
39 storage->StoreFrame(first_frame_id, packets);
61 // packets.
79 // packets.
  /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/net/quic/
quic_unacked_packet_map_test.cc 36 void VerifyPendingPackets(QuicPacketSequenceNumber* packets,
48 ASSERT_TRUE(unacked_packets_.IsUnacked(packets[i]));
49 EXPECT_TRUE(unacked_packets_.GetTransmissionInfo(packets[i]).in_flight);
53 void VerifyUnackedPackets(QuicPacketSequenceNumber* packets,
62 EXPECT_TRUE(unacked_packets_.IsUnacked(packets[i])) << packets[i];
66 void VerifyRetransmittablePackets(QuicPacketSequenceNumber* packets,
77 EXPECT_TRUE(unacked_packets_.HasRetransmittableFrames(packets[i]))
78 << " packets[" << i << "]:" << packets[i] local
    [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...]
  /bionic/libc/kernel/uapi/linux/
gen_stats.h 37 __u32 packets; member in struct:gnet_stats_basic
42 __u32 packets; member in struct:gnet_stats_basic_packed
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_set.h 75 struct ip_set_counter_match packets; member in struct:xt_set_info_match_v3
  /development/ndk/platforms/android-L/include/linux/
gen_stats.h 36 __u32 packets; member in struct:gnet_stats_basic
41 __u32 packets; member in struct:gnet_stats_basic_packed
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_set.h 75 struct ip_set_counter_match packets; member in struct:xt_set_info_match_v3
  /external/chromium_org/media/cast/transport/rtp_sender/rtp_packetizer/
rtp_packetizer.cc 63 SendPacketVector packets; local
102 packets.push_back(make_pair(key, packet));
110 packet_storage_->StoreFrame(frame.frame_id, packets);
113 transport_->SendPackets(packets);