Searched defs:packet (Results 126 - 150 of 509) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/packet/
H A DDataPacketExtension.java14 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 i
[all...]
/external/smack/src/org/jivesoftware/smackx/entitycaps/packet/
H A DCapsExtension.java18 package org.jivesoftware.smackx.entitycaps.packet;
20 import org.jivesoftware.smack.packet.PacketExtension;
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDelayInfo.java14 package org.jivesoftware.smackx.packet;
H A DDelayInformation.java21 package org.jivesoftware.smackx.packet;
28 import org.jivesoftware.smack.packet.PacketExtension;
32 * always includes the timestamp when the packet was originally sent and may include more
33 * information such as the JID of the entity that originally sent the packet as well as the reason
71 * Returns the JID of the entity that originally sent the packet or that delayed the
72 * delivery of the packet or <tt>null</tt> if this information is not available.
74 * @return the JID of the entity that originally sent the packet or that delayed the
75 * delivery of the packet.
82 * Sets the JID of the entity that originally sent the packet or that delayed the
83 * delivery of the packet o
[all...]
H A DLastActivity.java21 package org.jivesoftware.smackx.packet;
30 import org.jivesoftware.smack.packet.IQ;
139 * @return the LastActivity packet of the jid.
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DAgentInfo.java20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.IQ;
27 * IQ packet for retrieving and changing the Agent personal information.
32 * Element name of the packet extension.
37 * Namespace of the packet extension.
H A DMonitorPacket.java17 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.
89 MonitorPacket packet = new MonitorPacket();
99 packet.setMonitor(false);
102 packet.setMonitor(true);
110 return packet;
H A DOfferRevokeProvider.java20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.IQ;
H A DQueueUpdate.java20 package org.jivesoftware.smackx.workgroup.packet;
22 import org.jivesoftware.smack.packet.PacketExtension;
27 * An IQ packet that encapsulates both types of workgroup queue
34 * Element name of the packet extension.
39 * Namespace of the packet extension.
53 * value isn't set on this packet.
63 * -1 if the value isn't set on this packet.
/external/speex/libspeex/
H A Dspeex_header.c145 EXPORT SpeexHeader *speex_packet_to_header(char *packet, int size) argument
151 if (packet[i]!=h[i])
166 SPEEX_COPY(le_header, (SpeexHeader*)packet, 1);
/external/android-clat/
H A Dipv6.c30 * takes an icmp6 packet and sets it up for translation
31 * out - output packet
32 * icmp6 - pointer to icmp6 header in packet
72 * takes an ipv6 packet and hands it off to the layer 4 protocol function
73 * out - output packet
74 * packet - packet data
75 * len - size of packet
78 int ipv6_packet(clat_packet out, clat_packet_index pos, const uint8_t *packet, size_t len) { argument
79 const struct ip6_hdr *ip6 = (struct ip6_hdr *) packet;
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DSocketTransportWrapper.java217 * Reads packet bytes from transport connection.
219 * @return packet as byte array or null or empty packet if connection was closed
223 // read packet header
244 throw new IOException("Connection closed in reading packet header");
247 // extract packet length
250 throw new IOException("Wrong packet size detected: " + len);
253 // allocate packet bytes and store header there
257 // read packet data
266 throw new IOException("Connection closed in reading packet dat
278 writePacket(byte[] packet) argument
[all...]
H A DTransportWrapper.java84 * Reads packet from transport connection.
86 * @return packet as byte array or null or empty packet if connection was closed
91 * Writes packet to transport connection.
93 * @param packet packet as byte array
95 public void writePacket(byte[] packet) throws IOException; argument
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivet_local_printer_lister_unittest.cc138 void SimulateReceive(const uint8* packet, size_t size) { argument
139 test_service_discovery_client_->SimulateReceive(packet, size);
/external/chromium_org/components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/
H A DLocalTunnelBridge.java42 protected void sendToDataChannel(ByteBuffer packet) {
44 Log.d(TAG, "Sending " + stringifyServerPacket(packet));
45 super.sendToDataChannel(packet);
52 Log.d(TAG, "Received client data packet with " +
62 Log.d(TAG, "Received client control packet");
99 Log.d(TAG, "Received server data packet with "
109 Log.d(TAG, "Received server control packet");
115 protected void sendToDataChannel(ByteBuffer packet) {
117 Log.d(TAG, "Sending " + stringifyClientPacket(packet));
119 super.sendToDataChannel(packet);
152 stringifyClientPacket(ByteBuffer packet) argument
166 stringifyServerPacket(ByteBuffer packet) argument
180 decode(ByteBuffer packet) argument
[all...]
/external/chromium_org/media/cast/net/
H A Dudp_transport_unittest.cc28 void ReceivedPacket(scoped_ptr<Packet> packet) { argument
29 packet_ = std::string(packet->size(), '\0');
30 std::copy(packet->begin(), packet->end(), packet_.begin());
34 std::string packet() const { return packet_; } function in class:media::cast::MockPacketReceiver
47 void SendPacket(UdpTransport* transport, Packet packet) { argument
49 transport->SendPacket(new base::RefCountedData<Packet>(packet), cb);
75 Packet packet; local
76 packet.push_back('t');
77 packet
[all...]
/external/chromium_org/media/midi/
H A Dusb_midi_input_stream.cc69 const uint8* packet,
71 // The first 4 bytes of the packet is accessible here.
72 uint8 code_index = packet[0] & 0x0f;
73 uint8 cable_number = packet[0] >> 4;
89 delegate_->OnReceivedData(it->second, &packet[1], packet_size, time);
67 ProcessOnePacket(UsbMidiDevice* device, int endpoint_number, const uint8* packet, base::TimeTicks time) argument
/external/chromium_org/net/tools/quic/test_tools/
H A Dquic_test_utils.h38 // nack ranges of width 1 packet, starting from |least_unacked|.
64 const QuicEncryptedPacket& packet));
85 const QuicEncryptedPacket& packet) {
86 return QuicConnection::ProcessUdpPacket(self_address, peer_address, packet);
163 // Creates per-connection packet writers that register themselves with the
175 // packet writers created by this factory.
83 ReallyProcessUdpPacket(const IPEndPoint& self_address, const IPEndPoint& peer_address, const QuicEncryptedPacket& packet) argument
/external/chromium_org/remoting/client/
H A Daudio_decode_scheduler.cc23 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
67 ProcessAudioPacket( scoped_ptr<AudioPacket> packet, const base::Closure& done) argument
81 DecodePacket( scoped_ptr<AudioPacket> packet, const base::Closure& done) argument
92 ProcessDecodedPacket( scoped_ptr<AudioPacket> packet, const base::Closure& done) argument
118 ProcessAudioPacket(scoped_ptr<AudioPacket> packet, const base::Closure& done) argument
[all...]
H A Daudio_player.cc34 void AudioPlayer::ProcessAudioPacket(scoped_ptr<AudioPacket> packet) { argument
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
[all...]
/external/chromium_org/remoting/codec/
H A Daudio_decoder_opus.cc20 // Hosts will never generate more than 100 frames in a single packet.
54 bool AudioDecoderOpus::ResetForPacket(AudioPacket* packet) { argument
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
79 Decode( scoped_ptr<AudioPacket> packet) argument
[all...]
H A Dvideo_decoder_verbatim.cc29 bool VideoDecoderVerbatim::DecodePacket(const VideoPacket& packet) { argument
32 const char* in = packet.data().data();
34 for (int i = 0; i < packet.dirty_rects_size(); ++i) {
35 Rect proto_rect = packet.dirty_rects(i);
44 LOG(ERROR) << "Invalid packet received";
52 if (in + rect_row_size > packet.data().data() + packet.data().size()) {
53 LOG(ERROR) << "Invalid packet received";
62 if (in != packet.data().data() + packet
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_send_test.cc21 #include "webrtc/modules/audio_coding/neteq/tools/packet.h"
66 // same throughout the whole test run, no packet at all will be delivered.
70 // Insert audio and process until one packet is produced.
84 // Encoded packet received.
92 // This method receives the callback from ACM when a new packet is produced.
99 // Store the packet locally.
133 Packet* packet = local
135 assert(packet);
136 assert(packet->valid_header());
137 return packet;
[all...]
H A Dacm_send_test_oldapi.cc21 #include "webrtc/modules/audio_coding/neteq/tools/packet.h"
69 // same throughout the whole test run, no packet at all will be delivered.
73 // Insert audio and process until one packet is produced.
87 // Encoded packet received.
95 // This method receives the callback from ACM when a new packet is produced.
103 // Store the packet locally.
137 Packet* packet = local
139 assert(packet);
140 assert(packet->valid_header());
141 return packet;
[all...]
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/tools/
H A Dbwe_rtp_play.cc72 webrtc::test::RtpFileReader::Packet packet; local
73 if (!rtp_reader->NextPacket(&packet)) {
77 first_rtp_time_ms = packet.time_ms;
78 packet.time_ms = packet.time_ms - first_rtp_time_ms;
80 parser->Parse(packet.data, packet.length, &header);
86 static_cast<int>(packet.length - header.headerLength),

Completed in 846 milliseconds

1234567891011>>