Searched defs:packet (Results 1 - 25 of 87) sorted by relevance

1234

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DPacketListener.java11 void read(String packet); argument
13 void write(String packet); argument
/external/grub/netboot/
H A Dnic.h26 char *packet; member in struct:nic
H A Dconfig.c473 static char packet[ETH_FRAME_LEN]; variable
490 packet, /* packet */
/external/libvorbis/doc/
H A D06-floor0.tex27 codec setup header (third packet). configuration decode proceeds as
40 An end-of-packet condition during any of these bitstream reads renders
48 \subsubsection{packet decode} \label{vorbis:spec:floor0-decode}
50 Extracting a floor0 curve from an audio packet consists of first
62 5) if ( [booknumber] is greater than the highest number decode codebook ) then packet is undecodable
79 \item An end-of-packet condition during decode should be considered a
80 nominal occruence; if end-of-packet is reached during any read
107 vector from packet decode as well as the [floor0_order],
H A D07-floor1.tex33 a difference value decoded from the bitstream packet.
55 list-order Y values as decoded from an example packet are 110, 20, -5,
96 A list of floor X values is stored in the packet header in interleaved
97 format (used in list order during packet decode and synthesis). This
107 books were chosen for representation in a given packet. The
158 An end-of-packet condition while reading any aspect of a floor 1
167 \paragraph{packet decode} \label{vorbis:spec:floor1-decode}
199 12) [cval] = read from packet using codebook number
209 17) vector [floor1_Y] element ([j]+[offset]) = read from packet using codebook
226 An end-of-packet conditio
[all...]
H A D08-residue.tex16 residue vectors into the bitstream packet, and then reconstructs the
231 An end-of-packet condition at any point in header decode renders the
241 \subsubsection{packet decode}
243 Format 0 and 1 packet decode is identical except for specific
244 partition interleave. Format 2 packet decode can be built out of the
302 9) [temp] = read from packet using codebook [residue_classbook] in scalar context
344 An end-of-packet condition during packet decode is to be considered a
367 3) vector [entry_temp] = read vector from packet using current codebook in VQ context
400 2) vector [entry_temp] = read vector from packet usin
[all...]
/external/ppp/pppd/plugins/rp-pppoe/
H A Ddebug.c78 * packet -- a PPPoE packet
83 * Dumps the PPPoE packet to fp in an easy-to-read format
86 dumpPacket(FILE *fp, PPPoEPacket *packet, char const *dir) argument
88 int len = ntohs(packet->length);
97 UINT16_t type = etherType(packet);
113 switch(packet->code) {
123 (int) ntohs(packet->session),
130 (unsigned) packet->ethHdr.h_source[0],
131 (unsigned) packet
[all...]
H A Ddiscovery.c73 * 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) argument
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...]
/external/iptables/include/linux/netfilter/
H A Dxt_statistic.h29 __u32 packet; member in struct:xt_statistic_info::__anon6483::__anon6485
/external/kernel-headers/original/linux/netfilter/
H A Dxt_statistic.h25 u_int32_t packet; member in struct:xt_statistic_info::__anon7020::__anon7022
/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/dhcpcd/
H A Dbpf.c160 * So we pass the buffer in the API so we can loop on >1 packet. */
166 struct bpf_hdr packet; local
183 else if ((size_t)bytes < sizeof(packet))
189 memcpy(&packet, iface->buffer + iface->buffer_pos,
190 sizeof(packet));
191 if (packet.bh_caplen != packet.bh_datalen)
192 goto next; /* Incomplete packet, drop. */
193 if (iface->buffer_pos + packet.bh_caplen + packet
[all...]
/external/flac/libFLAC/
H A Dogg_encoder_aspect.c94 * packet. The packet is prefixed with
95 * + the one-byte packet type 0x7F
99 * - The first packet is flushed to the first page.
100 * - Each subsequent metadata block goes into its own packet.
101 * - Each metadata packet is flushed to page (this is not required,
104 * - Each subsequent FLAC audio frame goes into its own packet.
120 * Treat fLaC magic packet specially. We will note when we see it, then
121 * wait until we get the STREAMINFO and prepend it in that packet
124 ogg_packet packet; local
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPMetaFactory.java108 * @param packet a String contain an XMP-file.
112 public static XMPMeta parseFromString(String packet) throws XMPException argument
114 return parseFromString(packet, null);
122 * @param packet a String contain an XMP-file.
127 public static XMPMeta parseFromString(String packet, ParseOptions options) argument
130 return XMPMetaParser.parse(packet, options);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
H A DUdpKernel.java185 protected void newData( DatagramPacket packet )
192 Endpoint p = getEndpoint( packet.getSocketAddress(), true );
195 byte[] data = new byte[packet.getLength()];
196 System.arraycopy(packet.getData(), 0, data, 0, data.length);
202 protected void enqueueWrite( Endpoint endpoint, DatagramPacket packet )
204 writer.execute( new MessageWriter(endpoint, packet) );
210 private DatagramPacket packet; field in class:UdpKernel.MessageWriter
212 public MessageWriter( Endpoint endpoint, DatagramPacket packet )
215 this.packet = packet;
[all...]
/external/ppp/pppd/
H A Ddemand.c64 struct packet { struct
66 struct packet *next;
70 struct packet *pend_q;
71 struct packet *pend_qtail;
138 struct packet *pkt, *nextpkt;
265 * We apply the active_filter to see if we want this packet to
273 struct packet *pkt;
283 pkt = (struct packet *) malloc(sizeof(struct packet) + len);
305 struct packet *pk
[all...]
/external/chromium/chrome/browser/sync/notifier/
H A Dcache_invalidation_packet_handler.cc36 // all the packet sending/receiving classes.
64 LOG(ERROR) << "Could not get packet data";
98 LOG(ERROR) << "Could not find cache invalidation IQ packet element";
237 const std::string& packet) {
242 if (!base::Base64Decode(packet, &decoded_message)) {
244 << packet;
236 HandleInboundPacket( const std::string& packet) argument
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dfilemediaengine.cc87 void OnPacketReceived(talk_base::Buffer* packet);
93 // Read the next RTP dump packet, whose RTP SSRC is the same as first_ssrc_.
95 bool ReadNextPacket(RtpDumpPacket* packet);
96 // Send a RTP packet to the network. The input parameter data points to the
97 // start of the RTP packet and len is the packet size. Return true if the sent
106 // RTP dump packet read from the input stream.
152 void RtpSenderReceiver::OnPacketReceived(talk_base::Buffer* packet) { argument
154 rtp_dump_writer_->WriteRtpPacket(packet->data(), packet
180 ReadNextPacket(RtpDumpPacket* packet) argument
225 OnPacketReceived(talk_base::Buffer* packet) argument
248 OnPacketReceived(talk_base::Buffer* packet) argument
[all...]
H A Drtpdump.cc58 // RTP packet format (http://www.networksorcery.com/enp/protocol/rtp.htm).
93 talk_base::StreamResult RtpDumpReader::ReadPacket(RtpDumpPacket* packet) { argument
94 if (!packet) return talk_base::SR_ERROR;
106 // Read the RTP dump packet header.
117 packet->is_rtcp = (0 == data_len);
118 buf.ReadUInt32(&packet->elapsed_time);
119 packet->data.resize(dump_packet_len - sizeof(header));
121 // Read the actual RTP or RTCP packet.
122 return stream_->ReadAll(&packet->data[0], packet
186 ReadPacket(RtpDumpPacket* packet) argument
220 UpdateStreamStatistics(const RtpDumpPacket& packet) argument
259 UpdateDumpPacket(RtpDumpPacket* packet) argument
[all...]
H A Drtpdump.h48 // 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);
176 WritePacket(const RtpDumpPacket& packet) argument
[all...]
/external/dnsmasq/contrib/wrt/
H A Ddhcp_lease_time.c76 return NULL; /* malformed packet */
83 return NULL; /* malformed packet */
86 return NULL; /* malformed packet */
137 struct dhcp_packet packet; local
138 unsigned char *p = packet.options;
157 memset(&packet, 0, sizeof(packet));
159 packet.hlen = 0;
160 packet.htype = 0;
162 packet
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSIncoming.java178 * Parse a message from a datagram packet.
180 * @param packet
183 public DNSIncoming(DatagramPacket packet) throws IOException { argument
184 super(0, 0, packet.getPort() == DNSConstants.MDNS_PORT);
185 this._packet = packet;
186 InetAddress source = packet.getAddress();
187 this._messageInputStream = new MessageInputStream(packet.getData(), packet.getLength());
245 private DNSIncoming(int flags, int id, boolean multicast, DatagramPacket packet, long receivedTime) { argument
247 this._packet = packet;
[all...]
H A DHostInfo.java177 boolean shouldIgnorePacket(DatagramPacket packet) { argument
180 InetAddress from = packet.getAddress();
186 // of the interface on which the packet was received.
/external/libogg/include/ogg/
H A Dogg.h54 unsigned char *body_data; /* bytes from packet bodies */
72 int e_o_s; /* set when we have buffered the last packet in the
88 to a single raw Ogg/Vorbis packet *************************************/
91 unsigned char *packet; member in struct:__anon7997
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DUDPMessageChannel.java163 * Constructor - takes a datagram packet and a stack structure Extracts the
164 * address of the other from the datagram packet and stashes away the
196 * @param packet
197 * is the incoming datagram packet.
200 UDPMessageProcessor messageProcessor, DatagramPacket packet) {
202 this.incomingPacket = packet;
255 DatagramPacket packet;
286 packet = (DatagramPacket) ((UDPMessageProcessor) messageProcessor).messageQueue
290 this.incomingPacket = packet;
292 packet
199 UDPMessageChannel(SIPTransactionStack stack, UDPMessageProcessor messageProcessor, DatagramPacket packet) argument
316 processIncomingDataPacket(DatagramPacket packet) argument
[all...]

Completed in 514 milliseconds

1234