HomeSort by relevance Sort by last modified time
    Searched defs:Packet (Results 1 - 6 of 6) sorted by null

  /external/opencore/protocols/systems/tools/general/common/include/
packet.h 31 /* A packet represents a message. It contains a list of MediaFragments.
33 class Packet : public MediaData<Packet, DEF_PACKET_MAX_FRAGMENTS, DEF_PACKET_IMMEDIATE_DATA>
36 Packet(): flat_ptr(NULL)
40 virtual ~Packet()
73 virtual void AppendNext(Packet *next_ptr) = 0;
74 virtual Packet* GetNext() const = 0;*/
75 /* constructs a flat buffer containing the media data. It gets deleted when the Packet is destroyed
  /external/v8/benchmarks/
richards.js 51 var queue = new Packet(null, ID_WORKER, KIND_WORK);
52 queue = new Packet(queue, ID_WORKER, KIND_WORK);
55 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
60 queue = new Packet(null, ID_DEVICE_B, KIND_DEVICE);
61 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
62 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
83 * These two constants specify how many times a packet is queued and
123 * @param {Packet} queue the queue of work to be processed by the tas
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-richards.js 46 var queue = new Packet(null, ID_WORKER, KIND_WORK);
47 queue = new Packet(queue, ID_WORKER, KIND_WORK);
50 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
51 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
52 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
55 queue = new Packet(null, ID_DEVICE_B, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_B, KIND_DEVICE);
78 * These two constants specify how many times a packet is queued and
118 * @param {Packet} queue the queue of work to be processed by the tas
    [all...]
  /external/libpcap/
pcap-int.h 141 LPPACKET Packet;
154 int break_loop; /* flag set to force break from packet-reading loop */
253 bpf_u_int32 len; /* length this packet (off wire) */
269 bpf_u_int32 len; /* length this packet (off wire) */
  /sdk/emulator/qemud/
qemud.c 631 ** corresponding file descriptor. We use linked list of Packet
635 typedef struct Packet Packet;
639 struct Packet {
640 Packet* next;
650 static Packet* _free_packets;
652 /* Allocate a packet */
653 static Packet*
656 Packet* p = _free_packets;
668 /* Release a packet. This takes the address of a packe
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 393 for a chaining mode or public key packet it is assumed that regardless of the actual size of \textit{unsigned char} only the
    [all...]

Completed in 168 milliseconds