/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/chromium_org/media/cast/rtp_receiver/rtp_parser/ |
rtp_parser_unittest.cc | 80 packet_builder_.SetMarkerBit(true); // Only one packet. 96 // Build generic data packet. 97 uint8 packet[kPacketLength]; local 98 packet_builder_.BuildHeader(packet, kPacketLength); 99 // Parse packet as is. 102 EXPECT_TRUE(rtp_parser_->ParsePacket(packet, kPacketLength, &rtp_header)); 106 // Build generic data packet. 107 uint8 packet[kPacketLength]; local 113 packet_builder_.BuildHeader(packet, kPacketLength); 119 // Parse packet as is 126 uint8 packet[kPacketLength]; local 139 uint8 packet[kPacketLength]; local 157 uint8 packet[kPacketLength]; local 171 uint8 packet[kPacketLength]; local 189 uint8 packet[kPacketLength]; local [all...] |
/external/iptables/extensions/ |
libxt_pkttype.man | 1 This module matches the link-layer packet type.
|
libxt_length.man | 1 This module matches the length of the layer-3 payload (e.g. layer-4 packet) 2 of a packet against a specific value
|
/frameworks/av/media/mtp/ |
MtpDeviceInfo.cpp | 62 void MtpDeviceInfo::read(MtpDataPacket& packet) { 66 mStandardVersion = packet.getUInt16(); 67 mVendorExtensionID = packet.getUInt32(); 68 mVendorExtensionVersion = packet.getUInt16(); 70 packet.getString(string); 73 mFunctionalCode = packet.getUInt16(); 74 mOperations = packet.getAUInt16(); 75 mEvents = packet.getAUInt16(); 76 mDeviceProperties = packet.getAUInt16(); 77 mCaptureFormats = packet.getAUInt16() [all...] |
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ip_queue.h | 22 unsigned long packet_id; /* ID of queued packet */ 24 long timestamp_sec; /* Packet arrival time (seconds) */ 25 long timestamp_usec; /* Packet arrvial time (+useconds) */ 33 size_t data_len; /* Length of packet data */ 34 unsigned char payload[0]; /* Optional packet data */ 40 size_t range; /* Optional range of packet requested */ 45 unsigned long id; /* Packet ID for this verdict */ 47 unsigned char payload[0]; /* Optional replacement packet */ 57 /* Packet delivery modes */ 61 IPQ_COPY_PACKET /* Copy metadata + packet (range) * [all...] |
/external/smack/src/org/jivesoftware/smack/ |
PacketInterceptor.java | 22 import org.jivesoftware.smack.packet.Packet;
30 * This allows event-style programming -- every time a new packet is found,
31 * the {@link #interceptPacket(Packet)} method will be called.
39 * Process the packet that is about to be sent to the server. The intercepted
40 * packet can be modified by the interceptor.<p>
42 * Interceptors are invoked using the same thread that requested the packet
46 * @param packet the packet to is going to be sent to the server.
48 public void interceptPacket(Packet packet); [all...] |
PacketListener.java | 23 import org.jivesoftware.smack.packet.Packet; 27 * This allows event-style programming -- every time a new packet is found, 28 * the {@link #processPacket(Packet)} method will be called. This is the 38 * Process the next packet sent to this packet listener.<p> 44 * @param packet the packet to process. 46 public void processPacket(Packet packet); [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/ |
ip_queue.h | 14 unsigned long packet_id; /* ID of queued packet */ 16 long timestamp_sec; /* Packet arrival time (seconds) */ 17 long timestamp_usec; /* Packet arrvial time (+useconds) */ 25 size_t data_len; /* Length of packet data */ 26 unsigned char payload[0]; /* Optional packet data */ 32 size_t range; /* Optional range of packet requested */ 37 unsigned long id; /* Packet ID for this verdict */ 39 unsigned char payload[0]; /* Optional replacement packet */ 49 /* Packet delivery modes */ 53 IPQ_COPY_PACKET /* Copy metadata + packet (range) * [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/ |
ip_queue.h | 14 unsigned long packet_id; /* ID of queued packet */ 16 long timestamp_sec; /* Packet arrival time (seconds) */ 17 long timestamp_usec; /* Packet arrvial time (+useconds) */ 25 size_t data_len; /* Length of packet data */ 26 unsigned char payload[0]; /* Optional packet data */ 32 size_t range; /* Optional range of packet requested */ 37 unsigned long id; /* Packet ID for this verdict */ 39 unsigned char payload[0]; /* Optional replacement packet */ 49 /* Packet delivery modes */ 53 IPQ_COPY_PACKET /* Copy metadata + packet (range) * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv4/ |
ip_queue.h | 14 unsigned long packet_id; /* ID of queued packet */ 16 long timestamp_sec; /* Packet arrival time (seconds) */ 17 long timestamp_usec; /* Packet arrvial time (+useconds) */ 25 size_t data_len; /* Length of packet data */ 26 unsigned char payload[0]; /* Optional packet data */ 32 size_t range; /* Optional range of packet requested */ 37 unsigned long id; /* Packet ID for this verdict */ 39 unsigned char payload[0]; /* Optional replacement packet */ 49 /* Packet delivery modes */ 53 IPQ_COPY_PACKET /* Copy metadata + packet (range) * [all...] |
/external/chromium_org/media/cast/net/rtp_sender/rtp_packetizer/ |
rtp_packetizer.cc | 97 Packet packet; local 103 BuildCommonRTPheader(&packet, remaining_size == 0, timestamp); 106 packet.push_back( 108 packet.push_back(frame_id); 109 size_t start_size = packet.size(); 110 packet.resize(start_size + 4); 111 net::BigEndianWriter big_endian_writer(&(packet[start_size]), 4); 114 packet.push_back(static_cast<uint8>(reference_frame_id)); 117 packet.insert(packet.end(), data_iter, data_iter + payload_length) [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
fifo_packet.cc | 12 #include "nacl_io/packet.h" 49 Packet* FIFOPacket::PeekPacket() { 56 Packet* FIFOPacket::ReadPacket() { 60 Packet* out = packets_.back(); 67 void FIFOPacket::WritePacket(Packet* packet) { 68 cur_bytes_ += packet->len(); 69 packets_.push_front(packet);
|
packet.h | 17 // NOTE: The Packet class always owns the buffer and address, either by 'Copy' 19 class Packet { 21 explicit Packet(PepperInterface* ppapi); 22 ~Packet(); 40 DISALLOW_COPY_AND_ASSIGN(Packet);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_ringbuffer.h | 22 const struct util_packet *packet ); 25 struct util_packet *packet,
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
PacketListener.java | 11 void read(String packet); 13 void write(String packet);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_ringbuffer.h | 22 const struct util_packet *packet ); 25 struct util_packet *packet,
|
/external/smack/src/org/jivesoftware/smack/filter/ |
MessageTypeFilter.java | 23 import org.jivesoftware.smack.packet.Message; 24 import org.jivesoftware.smack.packet.Packet; 29 * @see org.jivesoftware.smack.packet.Message.Type 45 public boolean accept(Packet packet) { 46 if (!(packet instanceof Message)) { 50 return ((Message) packet).getType().equals(this.type);
|
/external/chromium_org/media/cast/rtcp/ |
rtcp_sender.h | 59 std::vector<uint8>* packet) const; 62 std::vector<uint8>* packet) const; 65 std::vector<uint8>* packet) const; 67 void BuildSdec(std::vector<uint8>* packet) const; 70 std::vector<uint8>* packet) const; 73 std::vector<uint8>* packet) const; 76 std::vector<uint8>* packet) const; 79 std::vector<uint8>* packet) const; 81 void BuildBye(std::vector<uint8>* packet) const; 84 std::vector<uint8>* packet) const [all...] |
/external/chromium_org/remoting/codec/ |
audio_decoder_opus.cc | 20 // Hosts will never generate more than 100 frames in a single packet. 54 bool AudioDecoderOpus::ResetForPacket(AudioPacket* packet) { 55 if (packet->channels() != channels_ || 56 packet->sampling_rate() != sampling_rate_) { 59 channels_ = packet->channels(); 60 sampling_rate_ = packet->sampling_rate(); 80 scoped_ptr<AudioPacket> packet) { 81 if (packet->encoding() != AudioPacket::ENCODING_OPUS) { 82 LOG(WARNING) << "Received an audio packet with encoding " 83 << packet->encoding() << " when an OPUS packet was expected." [all...] |
/external/iproute2/include/linux/ |
ip6_tunnel.h | 9 /* don't add encapsulation limit if one isn't present in inner packet */ 11 /* copy the traffic class field from the inner packet */ 13 /* copy the flowlabel from the inner packet */ 17 /* copy DSCP from the outer packet */ 19 /* copy fwmark from inner packet */
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
rtpdump_unittest.cc | 41 // Test that we read the correct header fields from the RTP/RTCP packet. 77 RtpDumpPacket packet; local 82 // Write a RTP packet to the stream, which is a valid RTP dump. Next, we will 87 EXPECT_EQ(talk_base::SR_SUCCESS, reader->ReadPacket(&packet)); 96 EXPECT_EQ(talk_base::SR_SUCCESS, reader->ReadPacket(&packet)); 105 EXPECT_EQ(talk_base::SR_ERROR, reader->ReadPacket(&packet)); 114 EXPECT_EQ(talk_base::SR_ERROR, reader->ReadPacket(&packet)); 127 RtpDumpPacket packet; local 130 EXPECT_EQ(talk_base::SR_SUCCESS, reader.ReadPacket(&packet)); 132 EXPECT_TRUE(GetRtpSsrc(&packet.data[0], packet.data.size(), &ssrc)) 165 RtpDumpPacket packet; local 192 RtpDumpPacket packet; local 220 RtpDumpPacket packet; local 261 RtpDumpPacket packet; local 283 RtpDumpPacket packet; local [all...] |
/external/chromium_org/net/quic/ |
quic_fec_group_test.cc | 48 for (size_t packet = 0; packet < num_packets; ++packet) { 50 if (packet == 0) { 51 // Initialize to the first packet. 56 uint8 byte = i > strlen(kData[packet]) ? 0x00 : kData[packet][i]; 59 entropy_redundancy = (entropy_redundancy != kEntropyFlag[packet]); 64 // If we're out of order, send the FEC packet in the position of the 65 // lost packet. Otherwise send all (non-missing) packets, then FEC [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
testclient.cc | 35 // DESIGN: Each packet received is put it into a list of packets. 41 packets_ = new std::vector<Packet*>(); 70 TestClient::Packet* TestClient::NextPacket() { 72 // at most 1 second. If, during the loop, a packet arrives, then we can stop 75 // Note that the case where no packet arrives is important. We often want to 76 // test that a packet does not arrive. 93 // Return the first packet placed in the queue. 94 Packet* packet = NULL; local 97 packet = packets_->front() 107 Packet* packet = NextPacket(); local 119 Packet* packet = NextPacket(); local [all...] |
/external/chromium_org/net/tools/quic/ |
quic_time_wait_list_manager_test.cc | 94 QuicEncryptedPacket* packet) { 95 time_wait_list_manager_.AddGuidToTimeWait(guid, version, packet); 102 void ProcessPacket(QuicGuid guid, const QuicEncryptedPacket& packet) { 106 packet); 129 scoped_ptr<QuicPacket> packet( 130 framer_.BuildUnsizedDataPacket(header, frames).packet); 131 EXPECT_TRUE(packet != NULL); 134 *packet); 167 QuicPublicResetPacket packet = visitor.public_reset_packet(); local 168 return guid_ == packet.public_header.guid & 258 QuicPublicResetPacket packet; local 393 scoped_ptr<QuicEncryptedPacket> packet; local [all...] |