HomeSort by relevance Sort by last modified time
    Searched defs:packet (Results 276 - 300 of 615) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
packet_buffer_unittest.cc 18 #include "webrtc/modules/audio_coding/neteq/packet.h"
30 Packet* NextPacket(int payload_size_bytes);
47 Packet* PacketGenerator::NextPacket(int payload_size_bytes) {
48 Packet* packet = new Packet; local
49 packet->header.sequenceNumber = seq_no_;
50 packet->header.timestamp = ts_;
51 packet->header.payloadType = pt_;
52 packet->header.markerBit = false
83 Packet* packet = gen.NextPacket(payload_len); local
106 Packet* packet = gen.NextPacket(payload_len); local
127 Packet* packet = gen.NextPacket(payload_len); local
136 Packet* packet = gen.NextPacket(payload_len); local
156 Packet* packet = gen.NextPacket(payload_len); local
192 Packet* packet = gen.NextPacket(payload_len); local
196 Packet* packet = gen.NextPacket(payload_len); local
258 Packet* packet = gen.NextPacket(payload_len); local
275 Packet* packet = buffer.GetNextPacket(&drop_count); local
315 Packet* packet = gen.NextPacket(payload_len); local
346 Packet* packet = gen.NextPacket(payload_len); local
371 Packet* packet = buffer.GetNextPacket(NULL); local
391 Packet* packet = NULL; local
519 Packet* packet = gen.NextPacket(payload_len); local
    [all...]
payload_splitter.cc 19 // The method loops through a list of packets {A, B, C, ...}. Each packet is
22 // When the first packet in |packet_list| has been processed, the orignal packet
31 Packet* red_packet = (*it);
51 Packet* new_packet = new Packet;
88 // The block lengths in the RED headers do not match the overall packet
90 // payloads from this packet.
111 // Delete old packet payload.
114 // Remove |it| from the packet list. This operation effectively moves th
127 Packet* packet = (*it); \/\/ Just to make the notation more intuitive. local
217 Packet* packet = (*it); \/\/ Just to make the notation more intuitive. local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
producer_fec.cc 36 ForwardErrorCorrection::Packet* pkt;
147 ForwardErrorCorrection::Packet* packet = new ForwardErrorCorrection::Packet; local
148 packet->length = payload_length + rtp_header_length;
149 memcpy(packet->data, data_buffer, packet->length);
150 media_packets_fec_.push_back(packet);
189 // Returns true if the media packet list for the FEC is at least
216 // Build FEC packet. The FEC packets in |fec_packets_| doesn'
    [all...]
rtcp_packet_unittest.cc 43 RawPacket packet = rr.Build(); local
45 parser.Parse(packet.buffer(), packet.buffer_length());
65 RawPacket packet = rr.Build(); local
67 parser.Parse(packet.buffer(), packet.buffer_length());
91 RawPacket packet = rr.Build(); local
93 parser.Parse(packet.buffer(), packet.buffer_length());
110 RawPacket packet = sr.Build() local
132 RawPacket packet = sr.Build(); local
152 RawPacket packet = sr.Build(); local
165 RawPacket packet = ij.Build(); local
176 RawPacket packet = ij.Build(); local
189 RawPacket packet = ij.Build(); local
206 RawPacket packet = app.Build(); local
228 RawPacket packet = app.Build(); local
244 RawPacket packet = sdes.Build(); local
262 RawPacket packet = sdes.Build(); local
275 RawPacket packet = sdes.Build(); local
289 RawPacket packet = pli.Build(); local
308 RawPacket packet = sli.Build(); local
327 RawPacket packet = nack.Build(); local
348 RawPacket packet = nack.Build(); local
370 RawPacket packet = rpsi.Build(); local
385 RawPacket packet = rpsi.Build(); local
399 RawPacket packet = rpsi.Build(); local
413 RawPacket packet = rpsi.Build(); local
428 RawPacket packet = rpsi.Build(); local
441 RawPacket packet = fir.Build(); local
459 RawPacket packet = rr.Build(); local
474 RawPacket packet = empty.Build(); local
494 RawPacket packet = sr.Build(); local
508 RawPacket packet = bye.Build(); local
523 RawPacket packet = bye.Build(); local
544 uint8_t packet[kRrLength + kReportBlockLength + kFirLength]; local
565 uint8_t packet[kRrLength + kReportBlockLength - 1]; local
584 uint8_t packet[kRrLength + kReportBlockLength - 1]; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
receiver_unittest.cc 15 #include "webrtc/modules/video_coding/main/source/packet.h"
45 VCMPacket packet; local
46 packet.dataPtr = data_buffer_;
47 bool packet_available = stream_generator_->GetPacket(&packet, index);
52 return receiver_.InsertPacket(packet, 640, 480);
56 VCMPacket packet; local
57 packet.dataPtr = data_buffer_;
58 bool packet_available = stream_generator_->PopPacket(&packet, index);
62 return receiver_.InsertPacket(packet, kWidth, kHeight);
74 // Drop the second packet
75 VCMPacket packet; local
    [all...]
session_info_unittest.cc 15 #include "webrtc/modules/video_coding/main/source/packet.h"
176 // Insert empty packet which will be the new high sequence number.
349 // Insert an older packet with a first packet set.
427 // Insert out of bound regular packets, and then the first and last packet.
438 // Insert an older packet with a first packet set.
494 VCMPacket* packet = new VCMPacket(packet_buffer_, packet_buffer_size(), local
496 EXPECT_EQ(session_.InsertPacket(*packet,
501 delete packet;
551 VCMPacket* packet = new VCMPacket(packet_buffer_, packet_buffer_size(), local
622 VCMPacket* packet = new VCMPacket(packet_buffer_, packet_buffer_size(), local
693 VCMPacket* packet = new VCMPacket(packet_buffer_, packet_buffer_size(), local
765 VCMPacket* packet = new VCMPacket(packet_buffer_, packet_buffer_size(), local
836 VCMPacket* packet = new VCMPacket(packet_buffer_, packet_buffer_size(), local
936 VCMPacket* packet = new VCMPacket(packet_buffer_, packet_buffer_size(), local
    [all...]
  /external/chromium_org/third_party/webrtc/test/
fake_network_pipe.cc 60 // The packet data.
64 // The time the packet was sent out on the network.
66 // The time the packet should arrive at the reciver.
109 // Too many packet on the link, drop this one.
128 NetworkPacket* packet = new NetworkPacket(data, data_length, time_now, local
130 capacity_link_.push(packet);
158 // Time to get this packet.
159 NetworkPacket* packet = capacity_link_.front(); local
163 // earlier than the last packet in the queue.
167 packet->arrival_time() + extra_delay
182 NetworkPacket* packet = delay_link_.front(); local
193 NetworkPacket* packet = packets_to_deliver.front(); local
    [all...]
  /external/chromium_org/ui/events/gesture_detection/
touch_disposition_gesture_filter.cc 20 const GestureEventDataPacket& packet) {
23 packet.timestamp(),
24 packet.touch_location().x(),
25 packet.touch_location().y(),
26 packet.raw_touch_location().x(),
27 packet.raw_touch_location().y(),
29 gfx::RectF(packet.touch_location(), gfx::SizeF()));
143 const GestureEventDataPacket& packet) {
144 if (packet.gesture_source() == GestureEventDataPacket::UNDEFINED ||
145 packet.gesture_source() == GestureEventDataPacket::INVALID
198 const GestureEventDataPacket packet = sequence.front(); local
    [all...]
  /external/deqp/modules/glshared/
glsRandomShaderProgram.cpp 193 const rr::VertexPacket* packet = packets[packetNdx]; local
194 const tcu::Vec4 attribValue = rr::readVertexAttribFloat(inputs[attribNdx], packet->instanceNdx, packet->vertexNdx);
212 rr::VertexPacket* packet = packets[packetNdx]; local
214 packet->position[0] = access.component(0).asFloat(ndx);
215 packet->position[1] = access.component(1).asFloat(ndx);
216 packet->position[2] = access.component(2).asFloat(ndx);
217 packet->position[3] = access.component(3).asFloat(ndx);
234 rr::VertexPacket* const packet = packets[packetNdx]; member in class:deqp::gls::rr
235 float* const dst = packet->outputs[varNdx].getAccess<float>()
271 const rr::FragmentPacket& packet = packets[packetOffset+packetNdx]; local
    [all...]
  /external/eigen/Eigen/src/Core/
DiagonalProduct.h 75 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const function in class:Eigen::DiagonalProduct
87 EIGEN_STRONG_INLINE PacketScalar packet(Index idx) const function in class:Eigen::DiagonalProduct
92 return packet<LoadMode>(int(StorageOrder)==ColMajor?idx:0,int(StorageOrder)==ColMajor?0:idx);
99 return internal::pmul(m_matrix.template packet<LoadMode>(row, col),
110 return internal::pmul(m_matrix.template packet<LoadMode>(row, col),
111 m_diagonal.diagonal().template packet<DiagonalVectorPacketLoadMode>(id));
MapBase.h 113 inline PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::MapBase
120 inline PacketScalar packet(Index index) const function in class:Eigen::MapBase
Replicate.h 105 inline PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::Replicate
114 return m_matrix.template packet<LoadMode>(actual_row, actual_col);
Reverse.h 145 inline const PacketScalar packet(Index row, Index col) const function in class:Eigen::Reverse
147 return reverse_packet::run(m_matrix.template packet<LoadMode>(
162 inline const PacketScalar packet(Index index) const function in class:Eigen::Reverse
164 return internal::preverse(m_matrix.template packet<LoadMode>( m_matrix.size() - index - PacketSize ));
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.h 67 StringExtractorGDBRemote &packet);
87 // Set the global packet timeout.
134 packet(),
145 packet.clear();
151 std::string packet; member in struct:GDBRemoteCommunication::History::Entry
  /external/lldb/tools/debugserver/source/
libdebugserver.cpp 60 std::string packet; local
68 // Spin waiting to get the A packet.
108 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Error getting packet.",__FUNCTION__);
116 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Connection closed before getting \"A\" packet.", __FUNCTION__);
224 // we are waiting for gdb remote protocol packets. When a packet occurs that
301 // Out remote packet receiving thread exited, exit for now.
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state_init.c 49 /* New (1.3) state mechanism. 3 commands (packet, scalar, vector) in
57 } packet[RADEON_MAX_STATE_PACKETS] = { variable in typeref:struct:__anon31681
163 return CP_PACKET0(packet[id].start, packet[id].len - 1);
372 OUT_BATCH(CP_PACKET0(packet[0].start, 3));
587 /* Fill in the packet headers:
    [all...]
  /external/ppp/pppd/
demand.c 64 struct packet { struct
66 struct packet *next;
70 struct packet *pend_q;
71 struct packet *pend_qtail;
138 struct packet *pkt, *nextpkt;
265 * We apply the active_filter to see if we want this packet to
273 struct packet *pkt;
283 pkt = (struct packet *) malloc(sizeof(struct packet) + len);
305 struct packet *pkt, *prev, *nextpkt
    [all...]
  /external/ppp/pppd/plugins/rp-pppoe/
common.c 36 * packet -- the PPPoE discovery packet to parse
37 * func -- function called for each tag in the packet
42 * Parses a PPPoE discovery packet, calling "func" for each tag in the packet.
46 parsePacket(PPPoEPacket *packet, ParseFunc *func, void *extra)
48 UINT16_t len = ntohs(packet->length);
52 if (packet->ver != 1) {
53 syslog(LOG_ERR, "Invalid PPPoE version (%d)", (int) packet->ver);
56 if (packet->type != 1)
398 PPPoEPacket packet; local
    [all...]
discovery.c 73 * packet -- a received PPPoE packet
75 * 1 if packet is for this PPPoE daemon; 0 otherwise.
77 * If we are using the Host-Unique tag, verifies that packet contains
81 packetIsForMe(PPPoEConnection *conn, PPPoEPacket *packet)
85 /* If packet is not directed to our MAC address, forget it */
86 if (memcmp(packet->ethHdr.h_dest, conn->myEth, ETH_ALEN)) return 0;
88 /* If we're not using the Host-Unique tag, then accept the packet */
91 parsePacket(packet, parseForHostUniq, &forMe);
107 * Picks interesting tags out of a PADO packet
246 PPPoEPacket packet; local
316 PPPoEPacket packet; local
416 PPPoEPacket packet; local
500 PPPoEPacket packet; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/
RosterEntry.java 23 import org.jivesoftware.smack.packet.IQ;
24 import org.jivesoftware.smack.packet.RosterPacket;
91 RosterPacket packet = new RosterPacket(); local
92 packet.setType(IQ.Type.SET);
93 packet.addRosterItem(toRosterItem(this));
94 connection.sendPacket(packet);
  /external/smack/src/org/jivesoftware/smack/packet/
IQ.java 21 package org.jivesoftware.smack.packet;
26 * The base IQ (Info/Query) packet. IQ packets are used to get and set information
28 * accounts. Each IQ packet has a specific type that indicates what type of action
33 * type of IQ packet it is. Some example IQ subpacket snippets:<ul>
42 public abstract class IQ extends Packet {
55 * Returns the type of the IQ packet.
57 * @return the type of the IQ packet.
64 * Sets the type of the IQ packet.
66 * @param type the type of the IQ packet.
100 // Add the error sub-packet, if there is one
    [all...]
Registration.java 21 package org.jivesoftware.smack.packet;
150 // Add packet extensions, if any are defined.
  /external/smack/src/org/jivesoftware/smackx/packet/
DataForm.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.PacketExtension;
57 * <li>form -> This packet contains a form to fill out. Display it to the user (if your
DiscoverItems.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.IQ;
33 * A DiscoverItems IQ packet, which is used by XMPP clients to request and receive items
LastActivity.java 21 package org.jivesoftware.smackx.packet;
30 import org.jivesoftware.smack.packet.IQ;
139 * @return the LastActivity packet of the jid.

Completed in 1399 milliseconds

<<11121314151617181920>>