Home
last modified time | relevance | path

Searched refs:PacketList (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/media/cast/net/pacing/
Dpaced_sender.h28 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;
60 bool SendPacketsToTransport(const PacketList& packets,
61 PacketList* packets_not_sent);
71 PacketList packet_list_;
72 PacketList resend_packet_list_;
Dpaced_sender_unittest.cc25 virtual bool SendPackets(const PacketList& packets) OVERRIDE { in SendPackets()
26 PacketList::const_iterator it = packets.begin(); in SendPackets()
67 PacketList CreatePacketList(size_t packet_size, int num_of_packets_in_frame) { in CreatePacketList()
68 PacketList packets; in CreatePacketList()
84 PacketList packets = CreatePacketList(kSize1, 1); in TEST_F()
95 PacketList packets = CreatePacketList(kSize1, num_of_packets); in TEST_F()
128 PacketList first_frame_packets = in TEST_F()
131 PacketList second_frame_packets = in TEST_F()
134 PacketList nack_packets = in TEST_F()
189 PacketList first_frame_packets = in TEST_F()
[all …]
Dpaced_sender.cc30 bool PacedSender::SendPackets(const PacketList& packets) { in SendPackets()
37 bool PacedSender::ResendPackets(const PacketList& packets) { in ResendPackets()
44 bool PacedSender::SendPacketsToTransport(const PacketList& packets, in SendPacketsToTransport()
45 PacketList* packets_not_sent) { in SendPacketsToTransport()
54 PacketList packets_to_send; in SendPacketsToTransport()
55 PacketList::const_iterator first_to_store_it = packets.begin(); in SendPacketsToTransport()
106 PacketList packets_to_resend; in SendStoredPackets()
110 PacketList::iterator it = resend_packet_list_.begin(); in SendStoredPackets()
120 PacketList::iterator it = packet_list_.begin(); in SendStoredPackets()
Dmock_paced_packet_sender.h19 MOCK_METHOD1(SendPackets, bool(const PacketList& packets));
20 MOCK_METHOD1(ResendPackets, bool(const PacketList& packets));
/external/chromium_org/media/cast/net/rtp_sender/packet_storage/
Dpacket_storage.cc33 void GetCopy(PacketList* packets) { in GetCopy()
126 PacketList PacketStorage::GetPackets( in GetPackets()
128 PacketList packets_to_resend; in GetPackets()
160 PacketList* packets) { in GetPacket()
Dpacket_storage_unittest.cc35 PacketList packets; in TEST_F()
61 PacketList packets; in TEST_F()
82 PacketList packets; in TEST_F()
Dpacket_storage.h36 PacketList GetPackets(
40 bool GetPacket(uint8 frame_id, uint16 packet_id, PacketList* packets);
/external/chromium_org/media/cast/net/rtp_sender/rtp_packetizer/
Drtp_packetizer_unittest.cc60 virtual bool SendPackets(const PacketList& packets) OVERRIDE { in SendPackets()
62 PacketList::const_iterator it = packets.begin(); in SendPackets()
75 virtual bool ResendPackets(const PacketList& packets) OVERRIDE { in ResendPackets()
Drtp_packetizer.cc92 PacketList packets; in Cast()
/external/chromium_org/media/cast/
Dcast_config.h179 typedef std::vector<Packet> PacketList; typedef
185 virtual bool SendPackets(const PacketList& packets) = 0;
/external/chromium_org/media/cast/logging/
Dlogging_impl.h45 void InsertPacketListEvent(CastLoggingEvent event, const PacketList& packets);
Dlogging_impl.cc80 const PacketList& packets) { in InsertPacketListEvent()
/external/chromium_org/chrome/renderer/media/
Dcast_session_delegate.h70 virtual bool SendPackets(const media::cast::PacketList& packets) OVERRIDE;
Dcast_session_delegate.cc121 const media::cast::PacketList& packets) { in SendPackets()
/external/chromium_org/media/cast/net/rtp_sender/
Drtp_sender.cc68 PacketList packets_to_resend; in ResendPackets()
/external/chromium_org/media/cast/test/transport/
Dtransport.cc140 virtual bool SendPackets(const PacketList& packets) OVERRIDE { in SendPackets()
/external/chromium_org/media/cast/rtcp/
Drtcp_unittest.cc57 virtual bool SendPackets(const PacketList& packets) OVERRIDE { in SendPackets()
61 virtual bool ResendPackets(const PacketList& packets) OVERRIDE { in ResendPackets()
Drtcp_sender_unittest.cc39 virtual bool SendPackets(const PacketList& packets) OVERRIDE { in SendPackets()
43 virtual bool ResendPackets(const PacketList& packets) OVERRIDE { in ResendPackets()
/external/chromium_org/media/cast/test/
Dend2end_unittest.cc93 virtual bool SendPackets(const PacketList& packets) OVERRIDE { in SendPackets()