HomeSort by relevance Sort by last modified time
    Searched refs:packetsize (Results 1 - 8 of 8) sorted by null

  /external/tcpdump/
packetdat.awk 4 if (packetsize <= 0)
5 packetsize = 512
23 id = 1.5 + (strtSeq - 1) / packetsize
35 id = 1 + ($7 - 2) / packetsize
send-ack.awk 4 if (packetsize <= 0)
5 packetsize = 512
40 else if (len != packetsize)
50 if (len != packetsize)
  /external/grub/netboot/
fsys_tftp.c 43 static int packetsize; variable
57 while (! buf_eof && (buf_read + packetsize <= FSYS_BUFLEN))
138 if ((packetsize = getdec (&p)) < TFTP_DEFAULTSIZE_PACKET)
141 grub_printf ("blksize = %d\n", packetsize);
197 if (len > packetsize)
200 grub_printf ("%s:%d: warning: LEN > PACKETSIZE (0x%x > 0x%x)\n",
201 __FILE__, __LINE__, len, packetsize);
250 if (len < packetsize)
265 packetsize = TFTP_DEFAULTSIZE_PACKET;
main.c 310 int packetsize = TFTP_DEFAULTSIZE_PACKET; local
395 if ((packetsize = getdec (&p)) < TFTP_DEFAULTSIZE_PACKET)
431 if (len > packetsize)
462 ++bcounter, len, len < packetsize)) >= 0)
466 if (len < packetsize)
  /external/qemu/hw/
smc91c111.c 686 int packetsize; local
696 packetsize = 64;
698 packetsize = (size & ~1);
699 packetsize += 6;
702 packetsize += 4;
704 if (packetsize > 2048)
720 *(p++) = packetsize & 0xff;
721 *(p++) = packetsize >> 8;
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbevents.c 772 int packetsize = 0; local
780 packetsize = 5;
783 packetsize = 4;
788 packetsize = 3;
804 packetsize = 0;
828 for ( i=0; i<(nread-(packetsize-1)); i += packetsize ) {
836 i -= (packetsize-1);
850 i -= (packetsize-1);
891 i -= (packetsize-1)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsevents.c 623 int packetsize = 0; local
632 packetsize = 5;
635 packetsize = 4;
640 packetsize = 3;
644 packetsize = 0;
657 for ( i=0; i<(nread-(packetsize-1)); i += packetsize ) {
665 i -= (packetsize-1);
679 i -= (packetsize-1);
720 i -= (packetsize-1)
    [all...]
  /external/android-clat/
clatd.c 309 * packetsize - size of packet
312 size_t packetsize) {
340 iov_len = ipv4_packet(out, CLAT_POS_IPHDR, packet, packetsize);
344 iov_len = ipv6_packet(out, CLAT_POS_IPHDR, packet, packetsize);

Completed in 270 milliseconds