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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump_unittest.cc 41 // Test that we read the correct header fields from the RTP/RTCP packet.
77 RtpDumpPacket packet; local
82 // Write a RTP packet to the stream, which is a valid RTP dump. Next, we will
87 EXPECT_EQ(talk_base::SR_SUCCESS, reader->ReadPacket(&packet));
96 EXPECT_EQ(talk_base::SR_SUCCESS, reader->ReadPacket(&packet));
105 EXPECT_EQ(talk_base::SR_ERROR, reader->ReadPacket(&packet));
114 EXPECT_EQ(talk_base::SR_ERROR, reader->ReadPacket(&packet));
127 RtpDumpPacket packet; local
130 EXPECT_EQ(talk_base::SR_SUCCESS, reader.ReadPacket(&packet));
132 EXPECT_TRUE(GetRtpSsrc(&packet.data[0], packet.data.size(), &ssrc))
165 RtpDumpPacket packet; local
192 RtpDumpPacket packet; local
220 RtpDumpPacket packet; local
261 RtpDumpPacket packet; local
283 RtpDumpPacket packet; local
    [all...]
rtputils_unittest.cc 66 // Packet has only mandatory fixed RTCP header
115 unsigned char packet[] = { local
119 EXPECT_TRUE(SetRtpHeaderFlags(packet, sizeof(packet), false, false, 0));
120 EXPECT_TRUE(SetRtpPayloadType(packet, sizeof(packet), 9u));
121 EXPECT_TRUE(SetRtpSeqNum(packet, sizeof(packet), 1111u));
122 EXPECT_TRUE(SetRtpTimestamp(packet, sizeof(packet), 2222u))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stunserver_unittest.cc 68 talk_base::TestClient::Packet* packet = client_->NextPacket(); local
69 if (packet) {
70 talk_base::ByteBuffer buf(packet->buf, packet->size);
73 delete packet;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
decoder_database_unittest.cc 151 // Create packet with payload type |i|. The last packet will have a payload
153 Packet* packet = new Packet; local
154 packet->header.payloadType = i;
155 packet_list.push_back(packet);
158 // Expect to return false, since the last packet is of an unknown type.
timestamp_scaler_unittest.cc 16 #include "webrtc/modules/audio_coding/neteq/packet.h"
139 // Alternate between G.722 and CNG every other packet.
159 // Make sure that the method ToInternal(Packet* packet) is wired up correctly.
174 Packet packet; local
175 packet.header.payloadType = kRtpPayloadType;
177 packet.header.timestamp = external_timestamp;
179 scaler.ToInternal(&packet);
180 EXPECT_EQ(internal_timestamp, packet.header.timestamp)
321 Packet* packet = NULL; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
producer_fec_unittest.cc 24 RedPacket* packet,
26 EXPECT_GT(packet->length(), static_cast<int>(kRtpHeaderSize));
27 EXPECT_TRUE(packet->data() != NULL);
28 uint8_t* data = packet->data();
68 producer_->SetFecParameters(&params, 0); // Expecting one FEC packet.
80 RedPacket* packet = producer_->GetFecPacket(kRedPayloadType, local
85 ASSERT_TRUE(packet != NULL);
87 kRedPayloadType, kFecPayloadType, packet, false);
92 delete packet;
108 producer_->SetFecParameters(&params, 0); // Expecting one FEC packet
123 RedPacket* packet = producer_->GetFecPacket(kRedPayloadType, local
140 RtpPacket* packet = generator_->NextPacket(0, 10); local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
mt_test_common.cc 55 // Insert outgoing packet into list
61 // Simulate receive time = network delay + packet jitter
77 RtpPacket* packet = NULL; local
83 // Take first packet in list
84 packet = _rtpPackets.front();
85 int64_t timeToReceive = packet->receiveTime - now;
96 if (!parser->Parse(packet->data, packet->length, &header)) {
97 delete packet;
105 if (!rtp_receiver_->IncomingRtpPacket(header, packet->data
    [all...]
  /external/dhcpcd/
bpf.c 160 * So we pass the buffer in the API so we can loop on >1 packet. */
166 struct bpf_hdr packet; local
183 else if ((size_t)bytes < sizeof(packet))
189 memcpy(&packet, iface->buffer + iface->buffer_pos,
190 sizeof(packet));
191 if (packet.bh_caplen != packet.bh_datalen)
192 goto next; /* Incomplete packet, drop. */
193 if (iface->buffer_pos + packet.bh_caplen + packet.bh_hdrlen
    [all...]
  /external/eigen/Eigen/src/Core/
Flagged.h 89 inline const PacketScalar packet(Index row, Index col) const function in class:Eigen::Flagged
91 return m_matrix.template packet<LoadMode>(row, col);
101 inline const PacketScalar packet(Index index) const function in class:Eigen::Flagged
103 return m_matrix.template packet<LoadMode>(index);
ForceAlignedAccess.h 18 * \brief Enforce aligned packet loads and stores regardless of what is requested
20 * \param ExpressionType the type of the object of which we are forcing aligned packet access
70 inline const PacketScalar packet(Index row, Index col) const function in class:Eigen::ForceAlignedAccess
72 return m_expression.template packet<Aligned>(row, col);
82 inline const PacketScalar packet(Index index) const function in class:Eigen::ForceAlignedAccess
84 return m_expression.template packet<Aligned>(index);
NestByValue.h 71 inline const PacketScalar packet(Index row, Index col) const function in class:Eigen::NestByValue
73 return m_expression.template packet<LoadMode>(row, col);
83 inline const PacketScalar packet(Index index) const function in class:Eigen::NestByValue
85 return m_expression.template packet<LoadMode>(index);
  /external/iptables/include/linux/netfilter/
xt_statistic.h 29 __u32 packet; member in struct:xt_statistic_info::__anon26417::__anon26419
  /external/jmdns/src/javax/jmdns/impl/
SocketListener.java 38 DatagramPacket packet = new DatagramPacket(buf, buf.length); local
40 packet.setLength(buf.length);
41 this._jmDNSImpl.getSocket().receive(packet);
46 if (this._jmDNSImpl.getLocalHost().shouldIgnorePacket(packet)) {
50 DNSIncoming msg = new DNSIncoming(packet);
55 if (packet.getPort() != DNSConstants.MDNS_PORT) {
56 this._jmDNSImpl.handleQuery(msg, packet.getAddress(), packet.getPort());
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_statistic.h 29 __u32 packet; member in struct:xt_statistic_info::__anon27044::__anon27046
  /external/smack/src/org/jivesoftware/smack/packet/
Authentication.java 21 package org.jivesoftware.smack.packet;
26 * Authentication packet, which can be used to login to a XMPP server as well
37 * Create a new authentication packet. By default, the packet will be in
40 * modes back from the server, change the type of the IQ packet to "get":
DefaultPacketExtension.java 21 package org.jivesoftware.smack.packet;
28 * instances of this class will be returned when getting packet extensions.<p>
54 * Creates a new generic packet extension.
65 * Returns the XML element name of the extension sub-packet root element.
67 * @return the XML element name of the packet extension.
74 * Returns the XML namespace of the extension sub-packet root element.
76 * @return the XML namespace of the packet extension.
97 * values of the packet extension.
109 * Returns a packet extension value given a name.
122 * Sets a packet extension value using the given name
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/packet/
DataPacketExtension.java 14 package org.jivesoftware.smackx.bytestreams.ibb.packet;
16 import org.jivesoftware.smack.packet.PacketExtension;
29 * The element name of the data packet extension.
36 /* sequence of this packet in regard to the other data packets */
39 /* the data contained in this packet */
45 * Creates a new In-Band Bytestream data packet.
48 * @param seq sequence of this packet in regard to the other data packets
49 * @param data the base64 encoded data contained in this packet
76 * Returns the sequence of this packet in regard to the other data packets.
78 * @return the sequence of this packet in regard to the other data packets.
    [all...]
  /external/smack/src/org/jivesoftware/smackx/entitycaps/packet/
CapsExtension.java 18 package org.jivesoftware.smackx.entitycaps.packet;
20 import org.jivesoftware.smack.packet.PacketExtension;
  /external/smack/src/org/jivesoftware/smackx/packet/
DefaultPrivateData.java 21 package org.jivesoftware.smackx.packet;
68 * Returns the XML element name of the private data sub-packet root element.
70 * @return the XML element name of the packet extension.
77 * Returns the XML namespace of the private data sub-packet root element.
79 * @return the XML namespace of the packet extension.
DelayInfo.java 14 package org.jivesoftware.smackx.packet;
Nick.java 19 package org.jivesoftware.smackx.packet;
21 import org.jivesoftware.smack.packet.PacketExtension;
65 * @see org.jivesoftware.smack.packet.PacketExtension#getElementName()
74 * @see org.jivesoftware.smack.packet.PacketExtension#getNamespace()
83 * @see org.jivesoftware.smack.packet.PacketExtension#toXML()
  /external/smack/src/org/jivesoftware/smackx/pubsub/packet/
PubSubNamespace.java 14 package org.jivesoftware.smackx.pubsub.packet;
17 * Defines all the valid namespaces that are used with the {@link PubSub} packet
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentWorkgroups.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.IQ;
SessionID.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.PacketExtension;
29 * Element name of the packet extension.
34 * Namespace of the packet extension.
UserID.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.PacketExtension;
29 * Element name of the packet extension.
34 * Namespace of the packet extension.

Completed in 1287 milliseconds

1 2 3 45 6 7 8 91011>>