Home
last modified time | relevance | path

Searched refs:packetsize (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/tcpdump/
H A Dsend-ack.awk4 if (packetsize <= 0)
5 packetsize = 512
40 else if (len != packetsize)
50 if (len != packetsize)
H A Dpacketdat.awk4 if (packetsize <= 0)
5 packetsize = 512
23 id = 1.5 + (strtSeq - 1) / packetsize
35 id = 1 + ($7 - 2) / packetsize
H A DREADME.md203 awk -f send-ack.awk packetsize=avgsize tracedata >sa
204 awk -f packetdat.awk packetsize=avgsize tracedata >pd
/freebsd/tools/test/stress2/misc/
H A Dsocketpair2.sh92 setsockets(const int doreverse, const size_t packetsize,
169 setsockets(doreverse, packetsize, s, r, sndbuf, sndbuf_set, rcvbuf, rcvbuf_set)
171 const size_t packetsize;
190 *sndbuf = packetsize;
208 *rcvbuf = packetsize;
/freebsd/sys/dev/adb/
H A Dadb_mouse.c170 sc->mode.packetsize = 5; in adb_mouse_attach()
556 sc->packet_read_len = sc->mode.packetsize; in ams_read()
563 (sc->mode.packetsize - sc->packet_read_len),len); in ams_read()
602 sc->mode.packetsize = 8; in ams_ioctl()
606 sc->mode.packetsize = 5; in ams_ioctl()
/freebsd/sys/dev/syscons/
H A Dsysmouse.c164 mode->packetsize = MOUSE_MSC_PACKETSIZE; in smdev_ioctl()
174 mode->packetsize = MOUSE_SYS_PACKETSIZE; in smdev_ioctl()
/freebsd/sys/dev/usb/input/
H A Dums.c806 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in ums_reset()
917 sc->sc_mode.packetsize, 1); in ums_put_queue()
1071 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in ums_fifo_ioctl()
1080 sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE; in ums_fifo_ioctl()
1104 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in ums_fifo_ioctl()
1113 sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE; in ums_fifo_ioctl()
H A Dwsp.c870 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in wsp_attach()
1413 sc->sc_mode.packetsize, 1); in wsp_add_to_queue()
1581 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in wsp_ioctl()
1586 sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE; in wsp_ioctl()
1605 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in wsp_ioctl()
1610 sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE; in wsp_ioctl()
H A Datp.c2150 sc->sc_mode.packetsize, 1); in atp_add_to_queue()
2277 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in atp_attach()
2529 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in atp_ioctl()
2534 sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE; in atp_ioctl()
2553 sc->sc_mode.packetsize = MOUSE_MSC_PACKETSIZE; in atp_ioctl()
2558 sc->sc_mode.packetsize = MOUSE_SYS_PACKETSIZE; in atp_ioctl()
/freebsd/sys/dev/vt/
H A Dvt_sysmouse.c404 mode->packetsize = MOUSE_MSC_PACKETSIZE; in sysmouse_ioctl()
410 mode->packetsize = MOUSE_SYS_PACKETSIZE; in sysmouse_ioctl()
/freebsd/sys/sys/
H A Dmouse.h181 int packetsize; /* the length of the data packet */ member
/freebsd/sys/dev/cyapa/
H A Dcyapa.c566 sc->mode.packetsize = MOUSE_PS2_PACKETSIZE; in cyapa_attach()
1205 ((mousemode_t *)data)->packetsize = in cyapaioctl()
1210 ((mousemode_t *)data)->packetsize = in cyapaioctl()
/freebsd/sys/dev/atkbdc/
H A Dpsm.c694 int packetsize; member
1607 sc->dflt_mode.packetsize = MOUSE_PS2_PACKETSIZE;
1617 sc->mode.packetsize = vendortype[i].packetsize;
2027 sc->config, sc->flags, sc->mode.packetsize);
2681 ((mousemode_t *)addr)->packetsize =
2686 ((mousemode_t *)addr)->packetsize =
3027 if (pb->inputbytes < sc->mode.packetsize)
3063 if (sc->syncerrors >= sc->mode.packetsize * 2 ||
3076 } else if (sc->syncerrors == sc->mode.packetsize) {
/freebsd/usr.sbin/moused/
H A Dmoused.c1506 cur_proto[4] = rodent.mode.packetsize; in r_identify()