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

1 2 3 4 5 6 7 8 91011

  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 94 template<typename Packet> inline Packet
95 padd(const Packet& a,
96 const Packet& b) { return a+b; }
99 template<typename Packet> inline Packet
100 psub(const Packet& a,
101 const Packet& b) { return a-b; }
104 template<typename Packet> inline Packet
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
packet_source.h 19 class Packet;
27 // Returns a pointer to the next packet. Returns NULL if the source is
29 virtual Packet* NextPacket() = 0;
packet.h 28 class Packet {
30 // Creates a packet, with the packet payload (including header bytes) in
33 // when the Packet object is deleted. The |time_ms| is an extra time
34 // associated with this packet, typically used to denote arrival time.
36 Packet(uint8_t* packet_memory,
44 // |virtual_packet_length_bytes| tells what size the packet had on wire,
47 Packet(uint8_t* packet_memory,
57 Packet(uint8_t* packet_memory, size_t allocated_bytes, double time_ms);
59 Packet(uint8_t* packet_memory
    [all...]
  /external/smack/src/org/jivesoftware/smack/
PacketInterceptor.java 22 import org.jivesoftware.smack.packet.Packet;
30 * This allows event-style programming -- every time a new packet is found,
31 * the {@link #interceptPacket(Packet)} method will be called.
39 * Process the packet that is about to be sent to the server. The intercepted
40 * packet can be modified by the interceptor.<p>
42 * Interceptors are invoked using the same thread that requested the packet
46 * @param packet the packet to is going to be sent to the server.
48 public void interceptPacket(Packet packet);
    [all...]
PacketListener.java 23 import org.jivesoftware.smack.packet.Packet;
27 * This allows event-style programming -- every time a new packet is found,
28 * the {@link #processPacket(Packet)} method will be called. This is the
38 * Process the next packet sent to this packet listener.<p>
44 * @param packet the packet to process.
46 public void processPacket(Packet packet);
    [all...]
PacketCollector.java 27 import org.jivesoftware.smack.packet.Packet;
36 * Each packet collector will queue up a configured number of packets for processing before
46 private ArrayBlockingQueue<Packet> resultQueue;
51 * Creates a new packet collector. If the packet filter is <tt>null</tt>, then
62 * Creates a new packet collector. If the packet filter is <tt>null</tt>, then
72 this.resultQueue = new ArrayBlockingQueue<Packet>(maxSize);
76 * Explicitly cancels the packet collector so that no more results ar
    [all...]
  /external/smack/src/org/jivesoftware/smack/filter/
PacketFilter.java 23 import org.jivesoftware.smack.packet.Packet;
26 * Defines a way to filter packets for particular attributes. Packet filters are
27 * used when constructing packet listeners or collectors -- the filter defines
29 * packet processing.<p>
32 * for more complex packet filtering by using the
39 * // Use an anonymous inner class to define a packet filter that returns
40 * // all packets that have a packet ID of "RS145".
42 * public boolean accept(Packet packet) {
    [all...]
PacketTypeFilter.java 23 import org.jivesoftware.smack.packet.Packet;
38 Class<? extends Packet> packetType;
41 * Creates a new packet type filter that will filter for packets that are the
46 public PacketTypeFilter(Class<? extends Packet> packetType) {
47 // Ensure the packet type is a sub-class of Packet.
48 if (!Packet.class.isAssignableFrom(packetType)) {
49 throw new IllegalArgumentException("Packet type must be a sub-class of Packet.")
    [all...]
NotFilter.java 23 import org.jivesoftware.smack.packet.Packet;
26 * Implements the logical NOT operation on a packet filter. In other words, packets
47 public boolean accept(Packet packet) {
48 return !filter.accept(packet);
PacketIDFilter.java 23 import org.jivesoftware.smack.packet.Packet;
26 * Filters for packets with a particular packet ID.
35 * Creates a new packet ID filter using the specified packet ID.
37 * @param packetID the packet ID to filter for.
41 throw new IllegalArgumentException("Packet ID cannot be null.");
46 public boolean accept(Packet packet) {
47 return packetID.equals(packet.getPacketID())
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
fifo_packet.h 20 class Packet;
25 // in packet size increments. FIFOPacket signals EMPTY where there are
40 // Return a pointer to the top packet without releasing ownership.
41 Packet* PeekPacket();
43 // Relinquish top packet, and remove it from the FIFO.
44 Packet* ReadPacket();
46 // Take ownership of packet and place it in the FIFO.
47 void WritePacket(Packet* packet);
50 std::list<Packet*> packets_
    [all...]
udp_event_emitter.cc 16 Packet* UdpEventEmitter::ReadRXPacket_Locked() {
17 Packet* packet = in_fifo_.ReadPacket(); local
20 return packet;
23 void UdpEventEmitter::WriteRXPacket_Locked(Packet* packet) {
24 in_fifo_.WritePacket(packet);
29 Packet* UdpEventEmitter::ReadTXPacket_Locked() {
30 Packet* packet = out_fifo_.ReadPacket() local
    [all...]
packet.h 17 // NOTE: The Packet class always owns the buffer and address, either by 'Copy'
19 class Packet {
21 explicit Packet(PepperInterface* ppapi);
22 ~Packet();
40 DISALLOW_COPY_AND_ASSIGN(Packet);
udp_event_emitter.h 23 // Takes or gives away ownership of the packet.
24 Packet* ReadRXPacket_Locked();
25 void WriteRXPacket_Locked(Packet* packet);
27 Packet* ReadTXPacket_Locked();
28 void WriteTXPacket_Locked(Packet* packet);
packet.cc 5 #include "nacl_io/socket/packet.h"
13 Packet::Packet(PepperInterface* ppapi)
17 Packet::~Packet() {
23 void Packet::Take(const void* buffer, size_t len, PP_Resource addr) {
29 void Packet::Copy(const void* buffer, size_t len, PP_Resource addr) {
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
fec_test_helper.h 29 typedef ForwardErrorCorrection::Packet Packet;
31 struct RtpPacket : public Packet {
45 // Creates a new RtpPacket with the RED header added to the packet.
46 RtpPacket* BuildMediaRedPacket(const RtpPacket* packet);
50 // header. Finally replaces the payload with the content of |packet->data|.
51 RtpPacket* BuildFecRedPacket(const Packet* packet);
53 void SetRedHeader(Packet* red_packet, uint8_t payload_type,
  /external/smack/src/org/jivesoftware/smackx/muc/
ConnectionDetachedPacketCollector.java 27 import org.jivesoftware.smack.packet.Packet;
45 private ArrayBlockingQueue<Packet> resultQueue;
48 * Creates a new packet collector. If the packet filter is <tt>null</tt>, then
56 * Creates a new packet collector. If the packet filter is <tt>null</tt>, then
60 this.resultQueue = new ArrayBlockingQueue<Packet>(maxSize);
64 * Polls to see if a packet is currently available and returns it, or
68 * @return the next packet result, or <tt>null</tt> if there are no mor
    [all...]
  /external/chromium_org/third_party/webrtc/test/
rtcp_packet_parser.cc 21 const uint8_t* packet = static_cast<const uint8_t*>(data); local
22 RTCPUtility::RTCPParserV2 parser(packet, len, true);
28 sender_report_.Set(parser.Packet().SR);
31 receiver_report_.Set(parser.Packet().RR);
34 report_block_.Set(parser.Packet().ReportBlockItem);
35 ++report_blocks_per_ssrc_[parser.Packet().ReportBlockItem.SSRC];
41 sdes_chunk_.Set(parser.Packet().CName);
44 bye_.Set(parser.Packet().BYE);
47 app_.Set(parser.Packet().APP);
50 app_item_.Set(parser.Packet().APP)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ReplyPacket.java 28 import org.apache.harmony.jpda.tests.framework.jdwp.Packet;
31 * This class represents JDWP reply packet.
33 public class ReplyPacket extends Packet {
52 * the JDWP packet, given as array of bytes.
57 Packet.SHORT_SIZE);
89 Packet.SHORT_SIZE);
  /external/chromium_org/media/cast/transport/rtcp/
rtcp_builder.h 32 bool BuildSR(const RtcpSenderInfo& sender_info, Packet* packet) const;
33 bool BuildSdec(Packet* packet) const;
34 bool BuildBye(Packet* packet) const;
36 Packet* packet) const;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
packet.h 22 struct Packet {
31 Packet()
39 // Comparison operators. Establish a packet ordering based on (1) timestamp,
40 // (2) sequence number, (3) regular packet vs sync-packet and (4) redundancy.
43 // the packets is sync-packet, the regular packet is considered earlier. For
46 bool operator==(const Packet& rhs) const {
52 bool operator!=(const Packet& rhs) const { return !operator==(rhs); }
53 bool operator<(const Packet& rhs) const
    [all...]
  /external/chromium_org/media/cast/rtcp/
rtcp_sender.h 63 Packet* packet) const;
66 Packet* packet) const;
68 void BuildSdec(Packet* packet) const;
70 void BuildPli(uint32 remote_ssrc, Packet* packet) const;
72 void BuildRemb(const RtcpRembMessage* remb, Packet* packet) const
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
testclient.h 41 // Records the contents of a packet that was received.
42 struct Packet {
43 Packet(const SocketAddress& a, const char* b, size_t s);
44 Packet(const Packet& p);
45 virtual ~Packet();
74 // Returns the next packet received by the client or 0 if none is received
75 // within a reasonable amount of time. The caller must delete the packet
77 Packet* NextPacket();
79 // Checks that the next packet has the given contents. Returns the remot
    [all...]
  /external/chromium_org/third_party/webrtc/base/
testclient.h 24 // Records the contents of a packet that was received.
25 struct Packet {
26 Packet(const SocketAddress& a, const char* b, size_t s);
27 Packet(const Packet& p);
28 virtual ~Packet();
57 // Returns the next packet received by the client or 0 if none is received
58 // within a reasonable amount of time. The caller must delete the packet
60 Packet* NextPacket();
62 // Checks that the next packet has the given contents. Returns the remot
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
Transcript.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.IQ;
23 import org.jivesoftware.smack.packet.Packet;
39 private List<Packet> packets;
48 this.packets = new ArrayList<Packet>();
58 public Transcript(String sessionID, List<Packet> packets) {
78 public List<Packet> getPackets() {
89 for (Iterator<Packet> it=packets.iterator(); it.hasNext();) {
90 Packet packet = it.next(); local
    [all...]

Completed in 1297 milliseconds

1 2 3 4 5 6 7 8 91011