Searched defs:packet (Results 126 - 150 of 234) sorted by relevance

12345678910

/external/smack/src/org/jivesoftware/smackx/packet/
H A DDataForm.java21 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
H A DMUCOwner.java21 package org.jivesoftware.smackx.packet;
22 import org.jivesoftware.smack.packet.IQ;
30 * IQ packet that serves for granting and revoking ownership privileges, granting
99 // Add packet extensions, if any are defined.
H A DMessageEvent.java21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.PacketExtension;
76 * Returns the XML element name of the extension sub-packet root element.
79 * @return the XML element name of the packet extension.
86 * Returns the XML namespace of the extension sub-packet root element.
89 * @return the XML namespace of the packet extension.
156 * The packet id is not used when the message is a request for notifications
257 * The packet id is not used when the message is a request for notifications
H A DMultipleAddresses.java21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.PacketExtension;
30 * Packet extension that contains the list of addresses that a packet should be sent or was sent.
47 * Adds a new address to which the packet is going to be sent or was sent.
54 * @param delivered true when the packet was already delivered to this address.
71 * Indicate that the packet being sent should not be replied.
H A DOfflineMessageRequest.java21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.IQ;
119 // Add packet extensions, if any are defined.
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DAgentRoster.java22 import org.jivesoftware.smackx.workgroup.packet.AgentStatus;
23 import org.jivesoftware.smackx.workgroup.packet.AgentStatusRequest;
28 import org.jivesoftware.smack.packet.Packet;
29 import org.jivesoftware.smack.packet.Presence;
58 // The roster is marked as initialized when at least a single roster packet
282 public void processPacket(Packet packet) { argument
283 Presence presence = (Presence)packet;
292 // If an "available" packet, add it to the presence map. Each presence map will hold
295 // Ignore the presence packet unless it has an agent status extension.
324 fireEvent(EVENT_PRESENCE_CHANGED, packet);
358 processPacket(Packet packet) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DAgentStatus.java19 package org.jivesoftware.smackx.workgroup.packet;
21 import org.jivesoftware.smack.packet.PacketExtension;
30 * Agent status packet.
43 * Element name of the packet extension.
48 * Namespace of the packet extension.
/external/android-clat/
H A Dclatd.c305 * takes a tun header and a packet and sends it down the stack
308 * packet - packet
309 * packetsize - size of packet
311 void packet_handler(const struct tun_data *tunnel, struct tun_pi *tun_header, const char *packet, argument
316 // Allocate buffers for all packet headers.
340 iov_len = ipv4_packet(out, CLAT_POS_IPHDR, packet, packetsize);
344 iov_len = ipv6_packet(out, CLAT_POS_IPHDR, packet, packetsize);
346 logmsg(ANDROID_LOG_WARN,"packet_handler: unknown packet type = %x",tun_header->proto);
355 * reads a packet fro
361 char packet[PACKETLEN]; local
[all...]
H A Dtranslate.c38 * calculates the checksum over all the packet components starting from pos
39 * checksum - checksum of packet components before pos
40 * packet - packet to calculate the checksum of
44 uint16_t packet_checksum(uint32_t checksum, clat_packet packet, int pos) { argument
47 if (packet[i].iov_len > 0) {
48 checksum = ip_checksum_add(checksum, packet[i].iov_base, packet[i].iov_len);
55 * returns the total length of all the packet components after pos
56 * packet
60 packet_length(clat_packet packet, int pos) argument
[all...]
/external/chromium/chrome/browser/sync/notifier/
H A Dcache_invalidation_packet_handler.cc36 // all the packet sending/receiving classes.
64 LOG(ERROR) << "Could not get packet data";
98 LOG(ERROR) << "Could not find cache invalidation IQ packet element";
237 const std::string& packet) {
242 if (!base::Base64Decode(packet, &decoded_message)) {
244 << packet;
236 HandleInboundPacket( const std::string& packet) argument
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dfilemediaengine.cc87 void OnPacketReceived(talk_base::Buffer* packet);
93 // Read the next RTP dump packet, whose RTP SSRC is the same as first_ssrc_.
95 bool ReadNextPacket(RtpDumpPacket* packet);
96 // Send a RTP packet to the network. The input parameter data points to the
97 // start of the RTP packet and len is the packet size. Return true if the sent
106 // RTP dump packet read from the input stream.
152 void RtpSenderReceiver::OnPacketReceived(talk_base::Buffer* packet) { argument
154 rtp_dump_writer_->WriteRtpPacket(packet->data(), packet
180 ReadNextPacket(RtpDumpPacket* packet) argument
225 OnPacketReceived(talk_base::Buffer* packet) argument
248 OnPacketReceived(talk_base::Buffer* packet) argument
[all...]
H A Drtpdump.cc58 // RTP packet format (http://www.networksorcery.com/enp/protocol/rtp.htm).
93 talk_base::StreamResult RtpDumpReader::ReadPacket(RtpDumpPacket* packet) { argument
94 if (!packet) return talk_base::SR_ERROR;
106 // Read the RTP dump packet header.
117 packet->is_rtcp = (0 == data_len);
118 buf.ReadUInt32(&packet->elapsed_time);
119 packet->data.resize(dump_packet_len - sizeof(header));
121 // Read the actual RTP or RTCP packet.
122 return stream_->ReadAll(&packet->data[0], packet
186 ReadPacket(RtpDumpPacket* packet) argument
220 UpdateStreamStatistics(const RtpDumpPacket& packet) argument
259 UpdateDumpPacket(RtpDumpPacket* packet) argument
[all...]
H A Drtpdump.h48 // For each packet, the file contains a 8 byte dump packet header, followed by
49 // the actual RTP or RTCP packet.
75 // Get the sequence number, timestampe, and SSRC of the RTP packet. Return
83 bool is_rtcp; // True if the data below is a RTCP packet.
84 std::vector<uint8> data; // The actual RTP or RTCP packet.
97 virtual talk_base::StreamResult ReadPacket(RtpDumpPacket* packet);
124 virtual talk_base::StreamResult ReadPacket(RtpDumpPacket* packet);
127 // During the first loop, update the statistics, including packet count, frame
129 void UpdateStreamStatistics(const RtpDumpPacket& packet);
176 WritePacket(const RtpDumpPacket& packet) argument
[all...]
/external/dnsmasq/contrib/wrt/
H A Ddhcp_lease_time.c76 return NULL; /* malformed packet */
83 return NULL; /* malformed packet */
86 return NULL; /* malformed packet */
137 struct dhcp_packet packet; local
138 unsigned char *p = packet.options;
157 memset(&packet, 0, sizeof(packet));
159 packet.hlen = 0;
160 packet.htype = 0;
162 packet
[all...]
/external/eigen/Eigen/src/Core/
H A DBlock.h196 inline PacketScalar packet(Index row, Index col) const function in class:Eigen::Block
198 return m_xpr.template packet<Unaligned>
210 inline PacketScalar packet(Index index) const function in class:Eigen::Block
212 return m_xpr.template packet<Unaligned>
H A DCwiseBinaryOp.h179 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const function in class:Eigen::CwiseBinaryOpImpl
181 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(row, col),
182 derived().rhs().template packet<LoadMode>(row, col));
192 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const function in class:Eigen::CwiseBinaryOpImpl
194 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(index),
195 derived().rhs().template packet<LoadMode>(index));
H A DCwiseNullaryOp.h75 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const function in class:Eigen::CwiseNullaryOp
86 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const function in class:Eigen::CwiseNullaryOp
H A DDenseCoeffsBase.h198 * \returns the packet of coefficients starting at the given row and column. It is your responsibility
199 * to ensure that a packet really starts there. This method is only available on expressions having the
204 * starting at an address which is a multiple of the packet size.
208 EIGEN_STRONG_INLINE PacketReturnType packet(Index row, Index col) const function in class:Eigen::DenseCoeffsBase
212 return derived().template packet<LoadMode>(row,col);
220 return packet<LoadMode>(rowIndexByOuterInner(outer, inner),
225 * \returns the packet of coefficients starting at the given index. It is your responsibility
226 * to ensure that a packet really starts there. This method is only available on expressions having the
231 * starting at an address which is a multiple of the packet size.
235 EIGEN_STRONG_INLINE PacketReturnType packet(Inde function in class:Eigen::DenseCoeffsBase
[all...]
H A DReverse.h145 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/eigen/Eigen/src/Core/products/
H A DCoeffBasedProduct.h26 * on the generic Assign mechanism to evaluate the product per coeff (or packet).
97 * of Product. If the Product itself is not a packet-access expression, there is still a chance that the inner
170 /* Allow index-based non-packet access. It is impossible though to allow index-based packed access,
183 EIGEN_STRONG_INLINE const PacketScalar packet(Index row, Index col) const function in class:Eigen::CoeffBasedProduct
284 pres = padd(pres, pmul( lhs.template packet<Aligned>(row, UnrollingIndex) , rhs.template packet<Aligned>(UnrollingIndex, col) ));
294 pres = pmul(lhs.template packet<Aligned>(row, 0) , rhs.template packet<Aligned>(0, col));
376 res = pmadd(pset1<Packet>(lhs.coeff(row, UnrollingIndex)), rhs.template packet<LoadMode>(UnrollingIndex, col), res);
387 res = pmadd(lhs.template packet<LoadMod
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSIncoming.java178 * Parse a message from a datagram packet.
180 * @param packet
183 public DNSIncoming(DatagramPacket packet) throws IOException { argument
184 super(0, 0, packet.getPort() == DNSConstants.MDNS_PORT);
185 this._packet = packet;
186 InetAddress source = packet.getAddress();
187 this._messageInputStream = new MessageInputStream(packet.getData(), packet.getLength());
245 private DNSIncoming(int flags, int id, boolean multicast, DatagramPacket packet, long receivedTime) { argument
247 this._packet = packet;
[all...]
H A DHostInfo.java177 boolean shouldIgnorePacket(DatagramPacket packet) { argument
180 InetAddress from = packet.getAddress();
186 // of the interface on which the packet was received.
/external/libogg/include/ogg/
H A Dogg.h54 unsigned char *body_data; /* bytes from packet bodies */
72 int e_o_s; /* set when we have buffered the last packet in the
88 to a single raw Ogg/Vorbis packet *************************************/
91 unsigned char *packet; member in struct:__anon8754
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DUDPMessageChannel.java163 * Constructor - takes a datagram packet and a stack structure Extracts the
164 * address of the other from the datagram packet and stashes away the
196 * @param packet
197 * is the incoming datagram packet.
200 UDPMessageProcessor messageProcessor, DatagramPacket packet) {
202 this.incomingPacket = packet;
255 DatagramPacket packet;
286 packet = (DatagramPacket) ((UDPMessageProcessor) messageProcessor).messageQueue
290 this.incomingPacket = packet;
292 packet
199 UDPMessageChannel(SIPTransactionStack stack, UDPMessageProcessor messageProcessor, DatagramPacket packet) argument
316 processIncomingDataPacket(DatagramPacket packet) argument
[all...]
/external/ppp/pppd/plugins/rp-pppoe/
H A Dcommon.c36 * 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) argument
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
101 findTag(PPPoEPacket *packet, UINT16_t type, PPPoETag *tag) argument
243 clampMSS(PPPoEPacket *packet, char const *dir, int clampMss) argument
398 PPPoEPacket packet; local
[all...]

Completed in 3262 milliseconds

12345678910