HomeSort by relevance Sort by last modified time
    Searched defs:packet (Results 26 - 50 of 284) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/smack/src/org/jivesoftware/smackx/packet/
PEPItem.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.PacketExtension;
49 * Returns the XML element name of the extension sub-packet root element.
52 * @return the XML element name of the packet extension.
59 * Returns the XML namespace of the extension sub-packet root element.
61 * @return the XML namespace of the packet extension.
PEPPubSub.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.IQ;
48 * Returns the XML element name of the extension sub-packet root element.
51 * @return the XML element name of the packet extension.
58 * Returns the XML namespace of the extension sub-packet root element.
62 * @return the XML namespace of the packet extension.
SharedGroupsInfo.java 20 package org.jivesoftware.smackx.packet;
22 import org.jivesoftware.smack.packet.IQ;
31 * IQ packet used for discovering the user's shared groups and for getting the answer back
Version.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.IQ;
26 * A Version IQ packet, which is used by XMPP clients to discover version information
36 * // Create a packet collector to listen for a response.
XHTMLExtension.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.PacketExtension;
31 * An XHTML sub-packet, which is used by XMPP clients to exchange formatted text. The XHTML
48 * Returns the XML element name of the extension sub-packet root element.
51 * @return the XML element name of the packet extension.
58 * Returns the XML namespace of the extension sub-packet root element.
61 * @return the XML namespace of the packet extension.
96 * Returns an Iterator for the bodies in the packet.
98 * @return an Iterator for the bodies in the packet.
107 * Adds a body to the packet
    [all...]
  /external/smack/src/org/jivesoftware/smackx/ping/packet/
Pong.java 17 package org.jivesoftware.smackx.ping.packet;
19 import org.jivesoftware.smack.packet.IQ;
24 * Composes a Pong packet from a received ping packet. This basically swaps
  /external/smack/src/org/jivesoftware/smackx/pubsub/packet/
PubSub.java 14 package org.jivesoftware.smackx.pubsub.packet;
16 import org.jivesoftware.smack.packet.IQ;
17 import org.jivesoftware.smack.packet.PacketExtension;
21 * The standard PubSub extension of an {@link IQ} packet. This is the topmost
32 * Returns the XML element name of the extension sub-packet root element.
34 * @return the XML element name of the packet extension.
41 * Returns the XML namespace of the extension sub-packet root element.
48 * @return the XML namespace of the packet extension.
56 * Set the namespace for the packet if it something other than the default
85 * The XML representation will be inside of an iq packet like
    [all...]
SyncPacketSend.java 14 package org.jivesoftware.smackx.pubsub.packet;
22 import org.jivesoftware.smack.packet.Packet;
26 * methods for sending a packet to the server and waiting for the reply.
35 static public Packet getReply(Connection connection, Packet packet, long timeout)
38 PacketFilter responseFilter = new PacketIDFilter(packet.getPacketID());
41 connection.sendPacket(packet);
44 Packet result = response.nextResult(timeout);
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
TranscriptProvider.java 20 package org.jivesoftware.smackx.workgroup.packet;
23 import org.jivesoftware.smack.packet.IQ;
24 import org.jivesoftware.smack.packet.Packet;
44 List<Packet> packets = new ArrayList<Packet>();
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pg.h 5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
pg.h 5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
pg.h 5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
  /bionic/libc/kernel/common/linux/netfilter/
xt_statistic.h 45 u_int32_t packet; member in struct:xt_statistic_info::__anon411::__anon413
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon1059::__anon1061
  /development/samples/ToyVpn/server/linux/
ToyVpnServer.cpp 108 char packet[1024]; local
112 int n = recvfrom(tunnel, packet, sizeof(packet), 0,
117 packet[n] = 0;
118 } while (packet[0] != 0 || strcmp(secret, &packet[1]));
201 // Send the parameters several times in case of packet loss.
206 // Allocate the buffer for a single packet.
207 char packet[32767]; local
219 // Read the outgoing packet from the input stream
    [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::__anon9299::__anon9301
  /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/linux/netfilter/
xt_statistic.h 25 u_int32_t packet; member in struct:xt_statistic_info::__anon9820::__anon9822
  /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...]

Completed in 5468 milliseconds

12 3 4 5 6 7 8 91011>>