HomeSort by relevance Sort by last modified time
    Searched defs:packet (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/flac/libFLAC/
ogg_encoder_aspect.c 94 * 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/grub/netboot/
nic.h 26 char *packet; member in struct:nic
config.c 473 static char packet[ETH_FRAME_LEN]; variable
490 packet, /* packet */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pg.h 5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
  /bionic/libc/kernel/common/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon339::__anon341
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon963::__anon965
  /external/dhcpcd/
bpf.c 160 * So we pass the buffer in the API so we can loop on >1 packet. */
166 struct bpf_hdr packet; local
180 else if ((size_t)bytes < sizeof(packet))
186 memcpy(&packet, iface->buffer + iface->buffer_pos,
187 sizeof(packet));
188 if (packet.bh_caplen != packet.bh_datalen)
189 goto next; /* Incomplete packet, drop. */
190 if (iface->buffer_pos + packet.bh_caplen + packet.bh_hdrlen
    [all...]
  /external/iptables/include/linux/netfilter/
xt_statistic.h 29 __u32 packet; member in struct:xt_statistic_info::__anon6608::__anon6610
  /external/kernel-headers/original/linux/netfilter/
xt_statistic.h 25 u_int32_t packet; member in struct:xt_statistic_info::__anon7053::__anon7055
  /prebuilt/linux-x86/toolchain/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::__anon20891::__anon20893
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon21509::__anon21511
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon21863::__anon21865
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon22217::__anon22219
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon22636::__anon22638
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon22999::__anon23001
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon23423::__anon23425
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon23785::__anon23787
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon24404::__anon24406
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon24741::__anon24743
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleExit.java 66 JdwpPacket packet = new JdwpPacket(rawBuf); local
71 finishChunkPacket(packet, CHUNK_EXIT, buf.position());
73 client.sendAndConsume(packet, mInst);
MonitorThread.java 314 * See if we have a full packet in the buffer. It's possible we have
315 * more than one packet, so we have to loop.
317 JdwpPacket packet = client.getJdwpPacket(); local
318 while (packet != null) {
319 if (packet.isDdmPacket()) {
321 assert !packet.isReply();
322 callHandler(client, packet, null);
323 packet.consume();
324 } else if (packet.isReply()
325 && client.isResponseToUs(packet.getId()) != null)
524 JdwpPacket packet = dbg.getJdwpPacket(); local
    [all...]
  /external/srtp/srtp/
ekt.c 207 uint8_t *packet; local
217 packet = (uint8_t*)base_tag + base_tag_len;
219 /* copy encrypted master key into packet */
221 memcpy(packet, ekt->encrypted_master_key, emk_len);
223 octet_string_hex_string(packet, emk_len));
224 packet += emk_len;
226 /* copy ROC into packet */
228 *((uint32_t *)packet) = be32_to_cpu(roc);
230 octet_string_hex_string(packet, sizeof(roc)));
231 packet += sizeof(roc)
    [all...]
  /external/ppp/pppd/
demand.c 64 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 *pkt, *prev, *nextpkt
    [all...]
  /external/ppp/pppd/plugins/rp-pppoe/
common.c 36 * packet -- the PPPoE discovery packet to parse
37 * func -- function called for each tag in the packet
42 * Parses a PPPoE discovery packet, calling "func" for each tag in the packet.
46 parsePacket(PPPoEPacket *packet, ParseFunc *func, void *extra)
48 UINT16_t len = ntohs(packet->length);
52 if (packet->ver != 1) {
53 syslog(LOG_ERR, "Invalid PPPoE version (%d)", (int) packet->ver);
56 if (packet->type != 1)
398 PPPoEPacket packet; local
    [all...]
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 1059 milliseconds

1 2 3 4 5