HomeSort by relevance Sort by last modified time
    Searched refs:packetsize (Results 1 - 7 of 7) 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/qemu/hw/net/
smc91c111.c 683 int packetsize; local
693 packetsize = 64;
695 packetsize = (size & ~1);
696 packetsize += 6;
699 packetsize += 4;
701 if (packetsize > 2048)
717 *(p++) = packetsize & 0xff;
718 *(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/
translate.h 63 void translate_packet(int fd, int to_ipv6, const uint8_t *packet, size_t packetsize);
translate.c 497 * packetsize - size of packet
499 void translate_packet(int fd, int to_ipv6, const uint8_t *packet, size_t packetsize) {
524 iov_len = ipv4_packet(out, CLAT_POS_IPHDR, packet, packetsize);
529 iov_len = ipv6_packet(out, CLAT_POS_IPHDR, packet, packetsize);

Completed in 193 milliseconds