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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/remoting/codec/
audio_encoder_opus.cc 74 // TODO(sergeyu): Figure out the right buffer size to use per packet instead
102 bool AudioEncoderOpus::ResetForPacket(AudioPacket* packet) {
103 if (packet->channels() != channels_ ||
104 packet->sampling_rate() != sampling_rate_) {
107 channels_ = packet->channels();
108 sampling_rate_ = packet->sampling_rate();
138 scoped_ptr<AudioPacket> packet) {
139 DCHECK_EQ(AudioPacket::ENCODING_RAW, packet->encoding());
140 DCHECK_EQ(1, packet->data_size());
141 DCHECK_EQ(kBytesPerSample, packet->bytes_per_sample())
    [all...]
  /external/iptables/extensions/
libip6t_REJECT.man 1 This is used to send back an error packet in response to the matched
2 packet: otherwise it is equivalent to
11 chains. The following option controls the nature of the error packet
28 TCP RST packet to be sent back. This is mainly useful for blocking
libipt_REJECT.man 1 This is used to send back an error packet in response to the matched
2 packet: otherwise it is equivalent to
11 chains. The following option controls the nature of the error packet
27 TCP RST packet to be sent back. This is mainly useful for blocking
libipt_ULOG.man 2 target is set for a rule, the Linux kernel will multicast this packet
11 This specifies the netlink group (1-32) to which the packet is sent.
20 the entire packet, regardless of its size. Default is 0.
23 Number of packet to queue inside kernel. Setting this value to, e.g. 10
libxt_CLASSIFY.man 1 This module allows you to set the skb\->priority value (and thus classify the packet into a specific CBQ class).
libxt_CT.man 1 The CT target allows to set parameters for a packet or its associated
3 the packet, which is then used by the conntrack core when initializing
7 Disables connection tracking for this packet.
24 Assign this packet to zone \fIid\fP and only have lookups done in that zone.
libxt_SECMARK.man 2 packet for use by security subsystems such as SELinux. It is
libxt_mark.man 1 This module matches the netfilter mark field associated with a packet
libxt_owner.man 1 This module attempts to match various characteristics of the packet creator,
9 Matches if the packet socket's file structure (if it has one) is owned by the
15 Matches if the packet socket's file structure is owned by the given group.
19 Matches if the packet is associated with a socket.
libxt_quota.man 2 packet. The condition matches until the byte counter reaches zero. Behavior
  /external/iptables/include/linux/netfilter/
xt_TPROXY.h 4 /* TPROXY target is capable of marking the packet to perform
xt_statistic.h 29 __u32 packet; member in struct:xt_statistic_info::__anon19539::__anon19541
  /external/kernel-headers/original/linux/netfilter/
xt_statistic.h 25 u_int32_t packet; member in struct:xt_statistic_info::__anon20066::__anon20068
  /external/smack/src/org/jivesoftware/smackx/ping/packet/
Pong.java 17 package org.jivesoftware.smackx.ping.packet;
19 import org.jivesoftware.smack.packet.IQ;
24 * Composes a Pong packet from a received ping packet. This basically swaps
  /external/smack/src/org/jivesoftware/smackx/receipts/
DeliveryReceiptManager.java 30 import org.jivesoftware.smack.packet.Message;
31 import org.jivesoftware.smack.packet.Packet;
33 import org.jivesoftware.smackx.packet.DiscoverInfo;
106 public void processPacket(Packet packet) {
107 DeliveryReceipt dr = (DeliveryReceipt)packet.getExtension(
112 l.onReceiptReceived(packet.getFrom(), packet.getTo(), dr.getId());
119 DeliveryReceiptRequest drr = (DeliveryReceiptRequest)packet.getExtension
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/
MetaData.java 27 import org.jivesoftware.smack.packet.PacketExtension;
30 * MetaData packet extension.
35 * Element name of the packet extension.
40 * Namespace of the packet extension.
  /external/webrtc/test/testsupport/
packet_reader.h 34 // Moves the supplied pointer to the beginning of the next packet.
36 // * The size of the packet ready to read (lower than the packet size for
37 // the last packet)
unittest_utils.h 21 // A base test fixture for packet related tests. Contains
22 // two full prepared packets with 1s, 2s in their data and a third packet with
24 // A packet data structure is also available, that contains these three packets
28 // Tree packet byte arrays with data used for verification:
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_statistic.h 25 u_int32_t packet; member in struct:xt_statistic_info::__anon37657::__anon37659
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_statistic.h 25 u_int32_t packet; member in struct:xt_statistic_info::__anon39248::__anon39250
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_statistic.h 25 u_int32_t packet; member in struct:xt_statistic_info::__anon40762::__anon40764
  /system/core/libnetutils/
Android.mk 9 packet.c
  /external/chromium_org/cloud_print/gcp20/prototype/
dns_packet_parser.h 23 // Iterator to walk over records of the DNS response packet. Encapsulates
27 // Constructs an iterator to process the |packet| of given |length|.
28 DnsPacketParser(const char* packet, size_t length);
35 // Returns |true| if no more bytes remain in the packet.
38 // Returns header of DNS packet.
50 // Returns current offset into the packet.
53 // Parses a (possibly compressed) DNS name from the packet starting at
  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 56 AVPacket* packet = packets_.front(); local
58 av_free_packet(packet);
59 delete packet;
62 void push(AVPacket* packet) {
63 av_dup_packet(packet);
64 packets_.push(packet);
185 scoped_ptr<AVPacket> packet(new AVPacket());
186 if (av_read_frame(av_format_context_, packet.get()) < 0) {
190 int stream_index = static_cast<int>(packet->stream_index);
194 ConvertFromTimeBase(av_audio_stream()->time_base, packet->pts
228 AVPacket packet; local
282 AVPacket packet; local
    [all...]
  /external/chromium_org/media/filters/
ffmpeg_h264_to_annex_b_bitstream_converter.h 27 // Converts |packet| to H.264 Annex B bytestream format. This conversion is
28 // on single NAL unit basis which is contained within the |packet| with the
29 // exception of the first packet which is prepended with the AVC decoder
38 // stored into the |packet|. But user should be aware that this conversion can
39 // free and reallocate the |packet|, if it needs to do so to fit it in.
43 // Returns false if conversion failed. In this case, the |packet| will not
45 bool ConvertPacket(AVPacket* packet);

Completed in 477 milliseconds

1 2 3 4 5 6 78 91011>>