/external/smack/src/org/jivesoftware/smackx/packet/ |
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...] |
AttentionExtension.java | 20 package org.jivesoftware.smackx.packet;
22 import org.jivesoftware.smack.packet.PacketExtension;
51 * @see org.jivesoftware.smack.packet.PacketExtension#getElementName()
60 * @see org.jivesoftware.smack.packet.PacketExtension#getNamespace()
69 * @see org.jivesoftware.smack.packet.PacketExtension#toXML()
|
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/provider/ |
HeadersProvider.java | 20 import org.jivesoftware.smack.packet.PacketExtension;
21 import org.jivesoftware.smackx.packet.Header;
22 import org.jivesoftware.smackx.packet.HeadersExtension;
|
RosterExchangeProvider.java | 25 import org.jivesoftware.smack.packet.PacketExtension; 28 import org.jivesoftware.smackx.packet.*; 47 * Parses a RosterExchange packet (extension sub-packet). 76 // Create packet.
|
/external/srtp/crypto/include/ |
rdb.h | 4 * interface for a replay database for packet security 19 * if the ith least significant bit is one, then the packet index 24 uint32_t window_start; /* packet index of the first bit in bitmask */
|
/external/srtp/ |
timing | 15 # timing.plt
#
# gnuplot script file for plotting the output generated by srtp_driver -t
#
# David A. McGrew
# Cisco Systems, Inc.
#
set xrange [0:2500]
set term pict "Times-Roman" 9
#
# plot authentication-only data
#
set title "Authentication Only"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set yrange [0:2000]
set output "plot-auth.pict"
plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 title "TMMH/AES" with lines, "timing.dat" index 2 title "TMMH/SEAL" with lines
#
# plot encryption-only data
#
set title "Encryption Only"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set output "plot-enc.pict"
set yrange [0:1200]
plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines
#
# plot encryption and authentication data
#
set title "Encryption and Authentication"
set ylabel "Megabits per second"
set xlabel "Octets in packet"
set yrange [0:1000]
set output "plot-enc-auth.pict"
plot "timing.dat" index 5 title "TMMH/SEAL" w (…)
|
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
NativeLlcpConnectionlessSocket.java | 61 LlcpPacket packet = doReceiveFrom(mLinkMiu); local 62 if (packet == null) { 65 return packet;
|
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/ |
NativeLlcpConnectionlessSocket.java | 61 LlcpPacket packet = doReceiveFrom(mLinkMiu); local 62 if (packet == null) { 65 return packet;
|
/external/tcpdump/ |
tcpdump.1 | 112 flag, which causes it to save the packet data to a file for later 115 flag, which causes it to read from a saved packet file rather than to 158 dropped, due to a lack of buffer space, by the packet capture mechanism 231 packet capture on an interface probably requires that either 248 Reading a saved packet file doesn't require special privileges. 252 Print each packet (minus its link level header) in ASCII. Handy for 259 Before writing a raw packet to a savefile, check whether the file is 269 Dump the compiled packet-matching code in a human readable form to 273 Dump packet-matching code as a 278 Dump packet-matching code as decimal numbers (preceded with a count) [all...] |
l2vpn.c | 47 { 0x10, "SONET/SDH Circuit Emulation over Packet"}, 48 { 0x11, "Structure-agnostic E1 over Packet"}, 49 { 0x12, "Structure-agnostic T1 (DS1) over Packet"}, 50 { 0x13, "Structure-agnostic E3 over Packet"}, 51 { 0x14, "Structure-agnostic T3 (DS3) over Packet"},
|
/external/chromium_org/remoting/protocol/ |
channel_multiplexer.cc | 28 PendingPacket(scoped_ptr<MultiplexPacket> packet, 30 : packet(packet.Pass()), 38 bool is_empty() { return pos >= packet->data().size(); } 41 size = std::min(size, packet->data().size() - pos); 42 memcpy(buffer, packet->data().data() + pos, size); 48 scoped_ptr<MultiplexPacket> packet; member in class:remoting::protocol::__anon10223::PendingPacket 80 void OnIncomingPacket(scoped_ptr<MultiplexPacket> packet, 86 bool DoWrite(scoped_ptr<MultiplexPacket> packet, 221 scoped_ptr<MultiplexPacket> packet, [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/ |
UdpKernel.java | 185 protected void newData( DatagramPacket packet ) 192 Endpoint p = getEndpoint( packet.getSocketAddress(), true ); 195 byte[] data = new byte[packet.getLength()]; 196 System.arraycopy(packet.getData(), 0, data, 0, data.length); 202 protected void enqueueWrite( Endpoint endpoint, DatagramPacket packet ) 204 writer.execute( new MessageWriter(endpoint, packet) ); 210 private DatagramPacket packet; field in class:UdpKernel.MessageWriter 212 public MessageWriter( Endpoint endpoint, DatagramPacket packet ) 215 this.packet = packet; 282 DatagramPacket packet = new DatagramPacket( buffer, buffer.length ); local [all...] |
/external/chromium_org/media/cast/framer/ |
frame_buffer.cc | 26 // Is this the first packet in the frame? 42 // Insert every packet only once. 44 VLOG(3) << "Packet already received, ignored: frame " 45 << frame_id_ << ", packet " << rtp_header.packet_id; 53 // Insert the packet.
|
/external/chromium_org/net/dns/ |
mock_mdns_socket_factory.cc | 88 void MockMDnsSocketFactory::SimulateReceive(const uint8* packet, int size) { 93 memcpy(recv_buffer_->data(), packet, size); 110 const std::string& packet, const std::string& address, 112 OnSendTo(packet); 113 return packet.size();
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
filemediaengine.cc | 135 void OnPacketReceived(talk_base::Buffer* packet); 141 // Read the next RTP dump packet, whose RTP SSRC is the same as first_ssrc_. 143 bool ReadNextPacket(RtpDumpPacket* packet); 144 // Send a RTP packet to the network. The input parameter data points to the 145 // start of the RTP packet and len is the packet size. Return true if the sent 156 // RTP dump packet read from the input stream. 225 void RtpSenderReceiver::OnPacketReceived(talk_base::Buffer* packet) { 227 rtp_dump_writer_->WriteRtpPacket(packet->data(), packet->length()) [all...] |
/external/libogg/doc/libogg/ |
ogg_page_packets.html | 21 leading packet is begun on a previous page, but ends on this page, it's 45 If a page consists of a packet begun on a previous page, and a new packet 51 If a page happens to be a single packet that was begun on a previous page, and 52 spans to the next page (in the case of a three or more page packet), the
|
/external/smack/asmack-master/jingle/ |
60-jingle-ext.patch | 1 Index: org/jivesoftware/smackx/packet/JingleContentInfo.java 3 --- org/jivesoftware/smackx/packet/JingleContentInfo.java (revision 11644) 4 +++ org/jivesoftware/smackx/packet/JingleContentInfo.java (working copy) 14 Index: org/jivesoftware/smackx/packet/JingleError.java 16 --- org/jivesoftware/smackx/packet/JingleError.java (revision 11644) 17 +++ org/jivesoftware/smackx/packet/JingleError.java (working copy) 27 Index: org/jivesoftware/smackx/packet/JingleTransport.java 29 --- org/jivesoftware/smackx/packet/JingleTransport.java (revision 11644) 30 +++ org/jivesoftware/smackx/packet/JingleTransport.java (working copy) 49 Index: org/jivesoftware/smackx/packet/JingleContentDescription.jav [all...] |
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
PubSubManager.java | 22 import org.jivesoftware.smack.packet.IQ.Type;
23 import org.jivesoftware.smack.packet.Packet;
24 import org.jivesoftware.smack.packet.PacketExtension;
28 import org.jivesoftware.smackx.packet.DiscoverInfo;
29 import org.jivesoftware.smackx.packet.DiscoverItems;
30 import org.jivesoftware.smackx.pubsub.packet.PubSub;
31 import org.jivesoftware.smackx.pubsub.packet.PubSubNamespace;
32 import org.jivesoftware.smackx.pubsub.packet.SyncPacketSend;
211 Packet reply = sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.SUBSCRIPTIONS)); [all...] |
/frameworks/av/media/mtp/ |
MtpDatabase.h | 65 MtpDataPacket& packet) = 0; 69 MtpDataPacket& packet) = 0; 72 MtpDataPacket& packet) = 0; 75 MtpDataPacket& packet) = 0; 82 MtpDataPacket& packet) = 0;
|
/frameworks/base/core/java/android/net/dhcp/ |
DhcpAckPacket.java | 25 * This class implements the DHCP-ACK packet. 30 * The address of the server which sent this packet. 57 * Fills in a packet with the requested ACK parameters. 71 * Adds the optional parameters to the client-generated ACK packet. 104 * Notifies the specified state machine of the ACK packet parameters.
|
DhcpRequestPacket.java | 26 * This class implements the DHCP-REQUEST packet. 30 * Generates a REQUEST packet with the specified parameters. 46 * Fills in a packet with the requested REQUEST attributes. 58 * Adds the optional parameters to the client-generated REQUEST packet. 76 * Notifies the specified state machine of the REQUEST packet parameters.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_packet.h | 24 /* Packet types */ 35 /* Packet socket options */ 40 /* Value 4 is still used by obsolete turbo-packet. */ 89 - Gap, chosen so that packet data (Start+tp_net) alignes to TPACKET_ALIGNMENT=16 91 - Start+tp_net: Packet data, aligned to TPACKET_ALIGNMENT=16.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/net/ |
ethernet.h | 43 u_int16_t ether_type; /* packet type ID field */ 56 #define ETHER_MIN_LEN (ETH_ZLEN + ETHER_CRC_LEN) /* min packet length */ 57 #define ETHER_MAX_LEN (ETH_FRAME_LEN + ETHER_CRC_LEN) /* max packet length */ 64 * The ETHERTYPE_NTRAILER packet types starting at ETHERTYPE_TRAIL have 68 #define ETHERTYPE_TRAIL 0x1000 /* Trailer packet */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_packet.h | 24 /* Packet types */ 35 /* Packet socket options */ 40 /* Value 4 is still used by obsolete turbo-packet. */ 89 - Gap, chosen so that packet data (Start+tp_net) alignes to TPACKET_ALIGNMENT=16 91 - Start+tp_net: Packet data, aligned to TPACKET_ALIGNMENT=16.
|