HomeSort by relevance Sort by last modified time
    Searched full:packet (Results 401 - 425 of 3660) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsyuv.c 86 struct ps2_packet *packet; local
203 hwdata->plist.packet = (struct ps2_packet *)SDL_malloc(
205 if ( ! hwdata->plist.packet ) {
211 packet = hwdata->plist.packet;
224 packet[pnum].ptr = &tags[0];
225 packet[pnum].len = 10 * sizeof(*tags);
242 packet[pnum].ptr = &tags[10];
243 packet[pnum].len = 2 * sizeof(*tags);
247 packet[pnum].ptr = (void *)base
322 struct ps2_packet packet; local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
GroupChatInvitation.java 23 import org.jivesoftware.smack.packet.PacketExtension;
28 * A group chat invitation packet extension, which is used to invite other
46 * // Create a packet collector or packet listeners using the filter...
59 * Element name of the packet extension.
64 * Namespace of the packet extension.
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5ClientForInitiator.java 22 import org.jivesoftware.smack.packet.IQ;
24 import org.jivesoftware.smackx.bytestreams.socks5.packet.Bytestream;
25 import org.jivesoftware.smackx.bytestreams.socks5.packet.Bytestream.StreamHost;
92 * Activates the SOCKS5 Bytestream by sending a XMPP SOCKS5 Bytestream activation packet to the
102 * Returns a SOCKS5 Bytestream activation packet.
104 * @return SOCKS5 Bytestream activation packet
  /external/smack/src/org/jivesoftware/smackx/packet/
PEPEvent.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.PacketExtension;
60 * Returns the XML element name of the extension sub-packet root element.
63 * @return the XML element name of the packet extension.
70 * Returns the XML namespace of the extension sub-packet root element.
74 * @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.
  /external/srtp/crypto/include/
rdbx.h 4 * replay database with extended packet indices, using a rollover counter
77 * given an rdbx and a sequence number s (from a newly arrived packet),
78 * sets the contents of *guess to contain the best guess of the packet
150 /* index_init(&pi) initializes a packet index pi (sets it to zero) */
166 * arrived packet), sets the contents of *guess to contain the best
167 * guess of the packet index to which s corresponds, and returns the
  /external/tcpdump/
dccp.h 15 * struct dccp_hdr - generic part of DCCP packet header
17 * @dccph_sport - Relevant port on the endpoint that sent this packet
21 * @dccph_cscov - Parts of the packet that are covered by the Checksum field
24 * @dccph_type - packet type, see DCCP_PKT_ prefixed macros
47 * struct dccp_hdr_ext - the low bits of a 48 bit seq packet
49 * @dccph_seq_low - low 24 bits of a 48 bit seq packet
  /frameworks/base/obex/javax/obex/
ClientSession.java 54 * The max Packet size must be at least 256 according to the OBEX
92 * Write the OBEX CONNECT packet to the server.
94 * Byte 1&2: Connect Packet Length
97 * Byte 5&6: Max OBEX Packet Length (Defined in MAX_PACKET_SIZE)
111 // check with local max packet size
113 throw new IOException("Packet size exceeds max packet size");
122 * Byte 1&2: Packet Length
125 * Byte 5&6: Max OBEX packet Length
206 throw new IOException("Packet size exceeds max packet size")
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/sctp/
sctpdataengine.cc 140 // a packet has been interpreted and parsed by usrsctp and found to contain
156 // It's neither a notification nor a recognized data packet. Drop it.
158 << " on an SCTP packet. Dropping.";
160 SctpInboundPacket* packet = new SctpInboundPacket; local
161 packet->buffer.SetData(data, length);
162 packet->params.ssrc = rcv.rcv_sid;
163 packet->params.seq_num = rcv.rcv_ssn;
164 packet->params.timestamp = rcv.rcv_tsn;
165 packet->params.type = type;
166 packet->flags = flags
751 SctpInboundPacket* packet = local
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
dns_response_builder.h 42 // Methods for appending different types of responses to packet.
53 // Serializes packet to byte sequence.
57 // Appends response to packet.
  /external/chromium_org/media/cast/logging/
logging_defines.h 57 // Send-side packet events.
61 // Receive-side packet events.
80 // Internal map sorted by packet id.
  /external/chromium_org/media/cast/net/rtp_sender/rtp_packetizer/
rtp_packetizer.h 23 // header to each packet.
43 // incremental sequence numbers for every packet (including retransmissions).
54 void BuildCommonRTPheader(std::vector<uint8>* packet, bool marker_bit,
  /external/chromium_org/media/cast/rtp_receiver/
rtp_receiver.cc 43 DCHECK_GE(length, kMinLengthOfRtp) << "Invalid RTP packet";
51 bool RtpReceiver::ReceivedPacket(const uint8* packet, size_t length) {
53 if (!parser_->ParsePacket(packet, length, &rtp_header)) return false;
  /external/chromium_org/media/filters/
audio_file_reader.cc 138 AVPacket packet; local
143 av_read_frame(glue_->format_context(), &packet) >= 0 &&
144 av_dup_packet(&packet) >= 0) {
146 if (packet.stream_index != stream_index_) {
147 av_free_packet(&packet);
151 // Make a shallow copy of packet so we can slide packet.data as frames are
152 // decoded from the packet; otherwise av_free_packet() will corrupt memory.
153 AVPacket packet_temp = packet;
168 // Update packet size and data pointer in case we need to call the decode
    [all...]
  /external/chromium_org/net/quic/congestion_control/
available_channel_estimator.h 8 // We can only use packet trains that are sent out faster than the acctual
11 // channel probing burst. Once the last packet have arrived you ask it for an
39 // Update the statistics with each receive time, for every packet we get a
  /external/chromium_org/remoting/protocol/
protobuf_video_writer.cc 64 void ProtobufVideoWriter::ProcessVideoPacket(scoped_ptr<VideoPacket> packet,
69 packet->set_deprecated_flags(7);
71 buffered_writer_.Write(SerializeAndFrameMessage(*packet), done);
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_export.c 21 Export a DSA key to a binary packet
22 @param out [out] Where to store the packet
23 @param outlen [in/out] The max size and resulting size of the packet
  /external/iptables/extensions/
libipt_addrtype.man 21 an anycast packet
50 The address type checking can be limited to the interface the packet is coming
61 The address type checking can be limited to the interface the packet is going
libxt_MARK.man 1 This target is used to set the Netfilter mark value associated with the packet.
8 Zeroes out the bits given by \fImask\fP and XORs \fIvalue\fP into the packet
12 Zeroes out the bits given by \fImask\fP and ORs \fIvalue\fP into the packet
  /external/kernel-headers/original/linux/usb/
f_mtp.h 24 /* length of packet, including this header */
26 /* container type (2 for data packet) */
69 * with a 12 byte MTP data packet header at the beginning.
  /external/libvorbis/doc/
vorbis-errors.txt 29 OV_ENOTVORBIS Bitstream/page/packet is not Vorbis data.
35 OV_ENOTAUDIO Packet data submitted to vorbis_synthesis is not audio data.
37 OV_EBADPACKET Invalid packet submitted to vorbis_synthesis.
  /external/llvm/lib/CodeGen/
DFAPacketizer.cpp 12 // functional unit assignments in a packet. The DFA is auto-generated from
18 // consumption for a given set of instructions in a packet. A transition
19 // models the addition of an instruction to a packet. In the DFA constructed
20 // by this class, if an instruction can be added to a packet, then a valid
22 // indicate that the instruction cannot be added to the current packet.
145 // endPacket - End the current packet, bundle packet instructions and reset
179 // End the current packet if needed.
206 // End the packet if dependency cannot be pruned.
213 // End the packet if resource is not available
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/packet/
Close.java 14 package org.jivesoftware.smackx.bytestreams.ibb.packet;
16 import org.jivesoftware.smack.packet.IQ;
30 * Creates a new In-Band Bytestream close request packet.
  /external/smack/src/org/jivesoftware/smackx/provider/
DelayInfoProvider.java 17 import org.jivesoftware.smack.packet.PacketExtension;
18 import org.jivesoftware.smackx.packet.DelayInfo;
19 import org.jivesoftware.smackx.packet.DelayInformation;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/netpacket/
packet.h 34 /* Packet types. */
44 /* Packet socket options. */
64 #endif /* netpacket/packet.h */

Completed in 464 milliseconds

<<11121314151617181920>>