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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/remoting/client/
audio_player.cc 34 void AudioPlayer::ProcessAudioPacket(scoped_ptr<AudioPacket> packet) {
35 CHECK_EQ(1, packet->data_size());
36 DCHECK_EQ(AudioPacket::ENCODING_RAW, packet->encoding());
37 DCHECK_NE(AudioPacket::SAMPLING_RATE_INVALID, packet->sampling_rate());
38 DCHECK_EQ(kSampleSizeBytes, packet->bytes_per_sample());
39 DCHECK_EQ(static_cast<int>(kChannels), packet->channels());
40 DCHECK_EQ(packet->data(0).size() % (kChannels * kSampleSizeBytes), 0u);
47 // Start the Pepper audio player if this is the first packet.
48 if (sampling_rate_ != packet->sampling_rate()) {
56 sampling_rate_ = packet->sampling_rate()
    [all...]
audio_decode_scheduler.cc 23 void ProcessAudioPacket(scoped_ptr<AudioPacket> packet,
35 void DecodePacket(scoped_ptr<AudioPacket> packet, const base::Closure& done);
38 void ProcessDecodedPacket(scoped_ptr<AudioPacket> packet,
68 scoped_ptr<AudioPacket> packet,
73 base::Passed(&packet), done));
82 scoped_ptr<AudioPacket> packet,
85 scoped_ptr<AudioPacket> decoded_packet = decoder_->Decode(packet.Pass());
93 scoped_ptr<AudioPacket> packet,
96 // Only process |packet| if it is non-NULL.
97 if (packet.get() && audio_player_.get()
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InitiationListener.java 24 import org.jivesoftware.smack.packet.IQ;
25 import org.jivesoftware.smack.packet.Packet;
27 import org.jivesoftware.smackx.bytestreams.ibb.packet.Open;
46 /* packet filter for all In-Band Bytestream requests */
63 public void processPacket(final Packet packet) {
67 processRequest(packet);
72 private void processRequest(Packet packet) {
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
InitiationListener.java 24 import org.jivesoftware.smack.packet.IQ;
25 import org.jivesoftware.smack.packet.Packet;
27 import org.jivesoftware.smackx.bytestreams.socks5.packet.Bytestream;
42 /* packet filter for all SOCKS5 Bytestream requests */
59 public void processPacket(final Packet packet) {
63 processRequest(packet);
68 private void processRequest(Packet packet) {
    [all...]
  /external/chromium_org/net/quic/
quic_framer.h 60 // Called only when |is_server_| is true and the the framer gets a packet with
61 // version flag true and the version on the packet doesn't match
64 // this packet.
67 // Called when a new packet has been received, before it
71 // Called when a public reset packet has been parsed but has not yet
74 const QuicPublicResetPacket& packet) = 0;
76 // Called only when |is_server_| is false and a version negotiation packet has
79 const QuicVersionNegotiationPacket& packet) = 0;
81 // Called when a lost packet has been recovered via FEC,
86 // If OnUnauthenticatedHeader returns false, framing for this packet wil
    [all...]
quic_packet_creator_test.cc 45 void ProcessPacket(QuicPacket* packet) {
48 *packet));
66 // Returns the number of bytes consumed by the header of packet, including
75 // Returns the number of bytes of overhead that will be added to a packet
84 // frame, assuming it is the last frame in the packet
123 ProcessPacket(serialized.packet);
124 delete serialized.packet;
144 ProcessPacket(serialized.packet);
145 delete serialized.packet;
161 ProcessPacket(serialized.packet);
    [all...]
  /external/chromium_org/remoting/codec/
video_encoder_vpx_unittest.cc 40 scoped_ptr<VideoPacket> packet = encoder->Encode(*frame); local
41 EXPECT_TRUE(packet);
46 packet = encoder->Encode(*frame);
47 EXPECT_TRUE(packet);
61 scoped_ptr<VideoPacket> packet = encoder->Encode(*frame); local
62 EXPECT_EQ(packet->format().x_dpi(), 96);
63 EXPECT_EQ(packet->format().y_dpi(), 97);
  /frameworks/base/core/java/android/net/dhcp/
DhcpStateMachine.java 25 * packet has been received.
29 * Signals that an offer packet has been received with the specified
37 * Signals that a NAK packet has been received.
49 * Signals that a client's DISCOVER packet has been received with the
56 * Signals that a client's REQUEST packet has been received with the
64 * Signals that a client's INFORM packet has been received with the
71 * Signals that a client's DECLINE packet has been received with the
DhcpDeclinePacket.java 23 * This class implements the DHCP-DECLINE packet.
27 * Generates a DECLINE packet with the specified parameters.
41 * Fills in a packet with the requested DECLINE attributes.
53 * Adds optional parameters to the DECLINE packet.
60 * Informs the state machine of the arrival of a DECLINE packet.
DhcpPacket.java 25 * Packet encapsulations.
83 * The maximum length of a packet that can be constructed.
207 * Asks the packet object to signal the next operation in the DHCP
214 * Asks the packet object to create a ByteBuffer serialization of
215 * the packet for transmission.
221 * Allows the concrete class to fill in packet-type-specific details,
222 * typically optional parameters at the end of the packet.
246 * Creates a new L3 packet (including IP header) containing the
247 * DHCP udp packet. This method relies upon the delegated method
248 * finishPacket() to insert the per-packet contents
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.h 48 // 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);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_udp.cc 15 #include "nacl_io/packet.h"
43 Packet* packet_;
144 Packet* packet = new Packet(mount()->ppapi()); local
145 packet->Copy(data_, length_error, addr_);
146 emitter_->WriteRXPacket_Locked(packet);
261 Packet* packet = emitter_->ReadRXPacket_Locked(); local
265 if (packet) {
304 Packet* packet = new Packet(mount_->ppapi()); local
    [all...]
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 26 * on the generic Assign mechanism to evaluate the product per coeff (or packet).
34 template<int StorageOrder, int UnrollingIndex, typename Lhs, typename Rhs, typename Packet, int LoadMode>
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
276 template<int UnrollingIndex, typename Lhs, typename Rhs, typename Packet>
283 product_coeff_vectorized_unroller<UnrollingIndex-PacketSize, Lhs, Rhs, Packet>::run(row, col, lhs, rhs, pres);
284 pres = padd(pres, pmul( lhs.template packet<Aligned>(row, UnrollingIndex) , rhs.template packet<Aligned>(UnrollingIndex, col) ));
288 template<typename Lhs, typename Rhs, typename Packet>
    [all...]
  /external/tcpdump/tests/
eapon1.new 1 IP 192.168.1.249.netbios-dgm > 192.168.1.255.netbios-dgm: NBT UDP PACKET(138)
2 IP 192.168.1.249.netbios-dgm > 192.168.1.255.netbios-dgm: NBT UDP PACKET(138)
3 IP 192.168.1.249.netbios-dgm > 192.168.1.255.netbios-dgm: NBT UDP PACKET(138)
4 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
5 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
6 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
7 IP 192.168.1.249.netbios-dgm > 192.168.1.255.netbios-dgm: NBT UDP PACKET(138)
8 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
9 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
10 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAS
    [all...]
eapon1.out 1 IP 192.168.1.249.netbios-dgm > 192.168.1.255.netbios-dgm: NBT UDP PACKET(138)
2 IP 192.168.1.249.netbios-dgm > 192.168.1.255.netbios-dgm: NBT UDP PACKET(138)
3 IP 192.168.1.249.netbios-dgm > 192.168.1.255.netbios-dgm: NBT UDP PACKET(138)
4 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
5 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
6 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
7 IP 192.168.1.249.netbios-dgm > 192.168.1.255.netbios-dgm: NBT UDP PACKET(138)
8 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
9 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
10 IP 192.168.1.249.netbios-ns > 192.168.1.255.netbios-ns: NBT UDP PACKET(137): QUERY; REQUEST; BROADCAS
    [all...]
  /external/libvorbis/doc/
vorbis-clip.txt 11 the frame packet; there's no way to recover only a part of the PCM time
12 segment from part of the coded packet without expanding the entire
13 packet and then discarding a portion of the resulting PCM audio.
16 a 'frame'; the roughly equivalent Vorbis construct is a 'packet'.
19 granularity is on these packet boundaries (the mp3 case is
23 stand-alone). Thus, at the physical packet level, Vorbis is still
29 edit points be packet aligned. Vorbis makes use of Ogg stream
39 ogg/doc/framing.html). Each page that contains a packet boundary is
41 is, 'complete samples-to-date' up to the last completed packet of that
45 (It's possible but rare for a packet to span more than two pages suc
    [all...]
  /external/tcpdump/
slcompress.h 26 * Compressed packet format:
28 * The first octet contains the packet type (top 3 bits), TCP
32 * the compressed packet. The next two octets are the TCP checksum
47 * ack is more than 65535, an uncompressed packet is sent.)
51 * Packet types (must not conflict with IP protocol version)
53 * The top nibble of the first octet is the packet type. There are
55 * control flags set); uncompressed TCP (a normal IP/TCP packet but
57 * this type of packet syncs the sender & receiver); and compressed
62 * three bits are actual packet type. For backward compatibility
65 * means "IP packet"
    [all...]
  /external/iptables/extensions/
libxt_physdev.man 7 Name of a bridge port via which a packet is received (only for
14 interface which begins with this name will match. If the packet didn't arrive
15 through a bridge device, this packet won't match this option, unless '!' is used.
18 Name of a bridge port via which a packet is going to be sent (for packets
30 chain. If the packet won't leave by a bridge device or if it is yet unknown what
31 the output device will be, then the packet won't match this option,
35 Matches if the packet has entered through a bridge interface.
38 Matches if the packet will leave through a bridge interface.
41 Matches if the packet is being bridged and therefore is not being routed.
libxt_statistic.man 15 Set the probability for a packet to be randomly matched. It only works with the
20 Match one packet every nth packet. It works only with the
23 \fB\-\-packet\fP
26 \fB\-\-packet\fP \fIp\fP
  /external/smack/src/org/jivesoftware/smack/filter/
OrFilter.java 23 import org.jivesoftware.smack.packet.Packet;
26 * Implements the logical OR operation over two or more packet filters. In
55 * @param filter1 the first packet filter.
56 * @param filter2 the second packet filter.
69 * Adds a filter to the filter list for the OR operation. A packet
91 public boolean accept(Packet packet) {
93 if (filters[i].accept(packet)) {
  /external/smack/src/org/jivesoftware/smackx/muc/
DeafOccupantInterceptor.java 24 import org.jivesoftware.smack.packet.Packet;
25 import org.jivesoftware.smack.packet.PacketExtension;
26 import org.jivesoftware.smack.packet.Presence;
29 * Packet interceptor that will intercept presence packets sent to the MUC service to indicate
47 public void interceptPacket(Packet packet) {
48 Presence presence = (Presence) packet;
53 packet.addExtension(new DeafExtension());
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
MonitorPacket.java 17 package org.jivesoftware.smackx.workgroup.packet;
19 import org.jivesoftware.smack.packet.IQ;
46 * Element name of the packet extension.
51 * Namespace of the packet extension.
80 * Packet extension provider for Monitor Packets.
89 MonitorPacket packet = new MonitorPacket(); local
99 packet.setMonitor(false);
102 packet.setMonitor(true);
110 return packet;
  /external/chromium_org/media/cast/net/rtp_sender/packet_storage/
packet_storage.h 33 void StorePacket(uint32 frame_id, uint16 packet_id, const Packet* packet);
35 // Copies all missing packets into the packet list.
39 // Copies packet into the packet list.
  /external/chromium_org/media/cast/rtcp/
rtcp_sender.cc 78 // Account for the RTCP header for an application-defined packet.
154 std::vector<uint8> packet; local
155 packet.reserve(kIpPacketSize);
158 BuildSR(*sender_info, NULL, &packet);
159 BuildSdec(&packet);
162 BuildBye(&packet);
166 BuildDlrrRb(dlrr, &packet);
170 BuildSenderLog(sender_log, &packet);
172 if (packet.empty())
175 transport_->SendRtcpPacket(packet);
196 std::vector<uint8> packet; local
    [all...]
  /external/ppp/pppd/plugins/rp-pppoe/
discovery.c 73 * packet -- a received PPPoE packet
75 * 1 if packet is for this PPPoE daemon; 0 otherwise.
77 * If we are using the Host-Unique tag, verifies that packet contains
81 packetIsForMe(PPPoEConnection *conn, PPPoEPacket *packet)
85 /* If packet is not directed to our MAC address, forget it */
86 if (memcmp(packet->ethHdr.h_dest, conn->myEth, ETH_ALEN)) return 0;
88 /* If we're not using the Host-Unique tag, then accept the packet */
91 parsePacket(packet, parseForHostUniq, &forMe);
107 * Picks interesting tags out of a PADO packet
246 PPPoEPacket packet; local
316 PPPoEPacket packet; local
416 PPPoEPacket packet; local
500 PPPoEPacket packet; local
    [all...]

Completed in 686 milliseconds

1 2 3 45 6 7 8 91011>>