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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/tools/
bwe_rtp_play.cc 73 uint8_t* packet = packet_buffer; local
80 if (rtp_reader->NextPacket(packet, &packet_length,
88 parser->Parse(packet, packet_length, &header);
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
packet_loss_test.cc 115 printf("Target packet loss rate: %.4f\n", _lossProbability);
116 printf("Actual packet loss rate: %.4f\n", (_totalThrown * 1.0f) / (_totalKept + _totalThrown));
122 printf("No packet losses inflicted\n");
179 // Only packet loss for delta frames
187 unsigned char *packet = NULL; local
195 while ((size = NextPacket(1500, &packet)) > 0)
199 InsertPacket(&newEncBuf, packet, size);
205 // parts of a packet, and not the whole packet.
207 //int size2 = ByteLoss(size, packet, 15)
    [all...]
  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 92 inline const PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::ArrayWrapper
94 return m_expression.template packet<LoadMode>(rowId, colId);
104 inline const PacketScalar packet(Index index) const function in class:Eigen::ArrayWrapper
106 return m_expression.template packet<LoadMode>(index);
212 inline const PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::MatrixWrapper
214 return m_expression.template packet<LoadMode>(rowId, colId);
224 inline const PacketScalar packet(Index index) const function in class:Eigen::MatrixWrapper
226 return m_expression.template packet<LoadMode>(index);
CwiseUnaryOp.h 107 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::CwiseUnaryOpImpl
109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(rowId, colId));
118 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const function in class:Eigen::CwiseUnaryOpImpl
120 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(index));
  /external/libvorbis/doc/
08-residue.tex 16 residue vectors into the bitstream packet, and then reconstructs the
231 An end-of-packet condition at any point in header decode renders the
241 \subsubsection{packet decode}
243 Format 0 and 1 packet decode is identical except for specific
244 partition interleave. Format 2 packet decode can be built out of the
286 Packet decode proceeds as follows, matching the description offered earlier in the document.
302 9) [temp] = read from packet using codebook [residue_classbook] in scalar context
344 An end-of-packet condition during packet decode is to be considered a
367 3) vector [entry_temp] = read vector from packet using current codebook in VQ contex
    [all...]
  /external/smack/src/org/jivesoftware/smack/
RosterGroup.java 24 import org.jivesoftware.smack.packet.IQ;
25 import org.jivesoftware.smack.packet.RosterPacket;
77 RosterPacket packet = new RosterPacket(); local
78 packet.setType(IQ.Type.SET);
82 packet.addRosterItem(item);
83 connection.sendPacket(packet);
171 RosterPacket packet = new RosterPacket(); local
172 packet.setType(IQ.Type.SET);
175 packet.addRosterItem(item);
178 .createPacketCollector(new PacketIDFilter(packet.getPacketID()))
213 RosterPacket packet = new RosterPacket(); local
    [all...]
PacketWriter.java 23 import org.jivesoftware.smack.packet.Packet;
31 * Writes packets to a XMPP server. Packets are sent using a dedicated thread. Packet
33 * sent. Packet listeners can be registered to listen for all outgoing packets.
46 private final BlockingQueue<Packet> queue;
50 * Creates a new packet writer with the specified connection.
55 this.queue = new ArrayBlockingQueue<Packet>(500, true);
73 writerThread.setName("Smack Packet Writer (" + connection.connectionCounterValue + ")");
78 * Sends the specified packet to the server.
80 * @param packet the packet to send
146 Packet packet = null; local
167 Packet packet = nextPacket(); local
180 Packet packet = queue.remove(); local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/forward/
Forwarded.java 19 import org.jivesoftware.smack.packet.Packet;
20 import org.jivesoftware.smack.packet.PacketExtension;
23 import org.jivesoftware.smackx.packet.DelayInfo;
28 * Packet extension for XEP-0297: Stanza Forwarding. This class implements
29 * the packet extension and a {@link PacketExtensionProvider} to parse
30 * forwarded messages from a packet. The extension
45 private Packet forwardedPacket;
48 * Creates a new Forwarded packet extension.
50 * @param delay an optional {@link DelayInfo} timestamp of the packet
105 Packet packet = null; local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
DelayInformation.java 21 package org.jivesoftware.smackx.packet;
28 import org.jivesoftware.smack.packet.PacketExtension;
32 * always includes the timestamp when the packet was originally sent and may include more
33 * information such as the JID of the entity that originally sent the packet as well as the reason
71 * Returns the JID of the entity that originally sent the packet or that delayed the
72 * delivery of the packet or <tt>null</tt> if this information is not available.
74 * @return the JID of the entity that originally sent the packet or that delayed the
75 * delivery of the packet.
82 * Sets the JID of the entity that originally sent the packet or that delayed the
83 * delivery of the packet or <tt>null</tt> if this information is not available
    [all...]
RosterExchange.java 21 package org.jivesoftware.smackx.packet;
26 import org.jivesoftware.smack.packet.PacketExtension;
78 * Adds a roster entry to the packet.
91 // Create a new Entry based on the rosterEntry and add it to the packet
99 * Adds a remote roster entry to the packet.
110 * Returns the XML element name of the extension sub-packet root element.
113 * @return the XML element name of the packet extension.
120 * Returns the XML namespace of the extension sub-packet root element.
124 * @return the XML namespace of the packet extension.
131 * Returns an Iterator for the roster entries in the packet
    [all...]
Time.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.IQ;
32 * A Time IQ packet, which is used by XMPP clients to exchange their respective local
44 * // Create a packet collector to listen for a response.
  /external/smack/src/org/jivesoftware/smackx/pubsub/
LeafNode.java 22 import org.jivesoftware.smack.packet.IQ.Type;
23 import org.jivesoftware.smackx.packet.DiscoverItems;
24 import org.jivesoftware.smackx.pubsub.packet.PubSub;
25 import org.jivesoftware.smackx.pubsub.packet.SyncPacketSend;
175 * packet has been sent.
181 PubSub packet = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PUBLISH, getId())); local
183 con.sendPacket(packet);
195 * packet has been sent.
215 * packet has been sent.
223 PubSub packet = createPubsubPacket(Type.SET, new PublishItem<T>(getId(), items)); local
245 PubSub packet = createPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.PUBLISH, getId())); local
297 PubSub packet = createPubsubPacket(Type.SET, new PublishItem<T>(getId(), items)); local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentInfo.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.IQ;
27 * IQ packet for retrieving and changing the Agent personal information.
32 * Element name of the packet extension.
37 * Namespace of the packet extension.
OfferRevokeProvider.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.IQ;
QueueUpdate.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.PacketExtension;
27 * An IQ packet that encapsulates both types of workgroup queue
34 * Element name of the packet extension.
39 * Namespace of the packet extension.
53 * value isn't set on this packet.
63 * -1 if the value isn't set on this packet.
TranscriptSearch.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.IQ;
28 * IQ packet for retrieving the transcript search form, submiting the completed search form
36 * Element name of the packet extension.
41 * Namespace of the packet extension.
49 // Add packet extensions, if any are defined.
74 // Parse the packet extension
TranscriptsProvider.java 20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.IQ;
  /external/srtp/srtp/
ekt.c 207 uint8_t *packet; local
217 packet = (uint8_t*)base_tag + base_tag_len;
219 /* copy encrypted master key into packet */
221 memcpy(packet, ekt->encrypted_master_key, emk_len);
223 octet_string_hex_string(packet, emk_len));
224 packet += emk_len;
226 /* copy ROC into packet */
228 *((uint32_t *)packet) = be32_to_cpu(roc);
230 octet_string_hex_string(packet, sizeof(roc)));
231 packet += sizeof(roc)
    [all...]
  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioGroupTest.java 78 DatagramPacket packet = new DatagramPacket(new byte[length + 1], length + 1); local
80 socket.receive(packet);
81 assertEquals(packet.getLength(), length);
85 DatagramPacket packet = new DatagramPacket(new byte[1], 1); local
91 socket.receive(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethod002Test.java 58 CommandPacket packet = new CommandPacket( local
62 packet.setNextValueAsString(classSig);
64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
84 packet = new CommandPacket(
87 packet.setNextValueAsClassID(classID);
89 reply = debuggeeWrapper.vmMirror.performCommand(packet);
109 packet = new CommandPacket(
112 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
113 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
114 packet.setNextValueAsInt(1)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
GetValuesTest.java 166 CommandPacket packet = new CommandPacket( local
169 packet.setNextValueAsThreadID(threadID);
170 packet.setNextValueAsFrameID(frameID);
174 packet.setNextValueAsInt(varTags.length);
178 packet.setNextValueAsInt(varInfos[i].getSlot());
181 packet.setNextValueAsByte(tag);
187 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/smack/src/org/jivesoftware/smackx/receipts/
DeliveryReceiptManager.java 30 import org.jivesoftware.smack.packet.Message;
31 import org.jivesoftware.smack.packet.Packet;
33 import org.jivesoftware.smackx.packet.DiscoverInfo;
106 public void processPacket(Packet packet) {
107 DeliveryReceipt dr = (DeliveryReceipt)packet.getExtension(
112 l.onReceiptReceived(packet.getFrom(), packet.getTo(), dr.getId());
119 DeliveryReceiptRequest drr = (DeliveryReceiptRequest)packet.getExtension
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Record.cpp 93 struct encoder_media_buffer_type * packet = local
95 native_handle_delete(const_cast<native_handle_t *>(packet->meta_handle));
221 struct encoder_media_buffer_type * packet = local
223 packet->meta_handle = native_handle_create(1, 2); //1 fd, 1 offset and 1 size
224 packet->buffer_type = kMetadataBufferTypeCameraSource;
225 native_handle_t * nh = const_cast<native_handle_t *>(packet->meta_handle);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
GetValuesTest.java 61 CommandPacket packet = new CommandPacket( local
64 packet.setNextValueAsReferenceTypeID(classID);
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
140 CommandPacket packet = new CommandPacket( local
144 packet.setNextValueAsReferenceTypeID(classID);
146 packet.setNextValueAsInt(1);
148 packet.setNextValueAsFieldID(fieldID);
149 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
192 CommandPacket packet = new CommandPacket( local
195 packet.setNextValueAsArrayID(arrayID)
    [all...]
SetValuesTest.java 57 CommandPacket packet = new CommandPacket( local
60 packet.setNextValueAsReferenceTypeID(classID);
61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
100 CommandPacket packet = new CommandPacket( local
103 packet.setNextValueAsReferenceTypeID(classID);
104 packet.setNextValueAsInt(1);
105 packet.setNextValueAsFieldID(fieldID);
107 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
122 CommandPacket packet = new CommandPacket( local
125 packet.setNextValueAsArrayID(arrayID)
    [all...]

Completed in 1406 milliseconds

1 2 3 4 5 6 7 8 91011>>