HomeSort by: relevance | last modified time | path
    Searched defs:nports (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/compat/common/
usb_subr_30.c 175 const u_int nports = dev->ud_hub->uh_hubdesc.bNbrPorts; local in function:usbd_fill_deviceinfo30
176 for (i = 1; i <= __arraycount(di->udi_ports) && i <= nports;
194 di->udi_nports = nports;
  /src/sys/dev/usb/
vhci.h 47 size_t nports; member in struct:vhci_ioc_get_info
uhub.c 211 int nports; local in function:usbd_get_hub_desc
228 nports = hssd.bNbrPorts;
229 if (dev->ud_depth != 0 && nports > UHD_SS_NPORTS_MAX) {
231 nports, UHD_SS_NPORTS_MAX, 0, 0);
232 nports = hd->bNbrPorts = UHD_SS_NPORTS_MAX;
234 rmvlen = (nports + 7) / 8;
252 nports = hd->bNbrPorts;
253 if (!err && nports > 7) {
255 USB_HUB_DESCRIPTOR_SIZE + (nports+1) / 8);
309 int p, port, nports, nremov, pwrdly local in function:uhub_attach
912 int nports, port, rc; local in function:uhub_detach
993 int nports; local in function:uhub_childdet
    [all...]
usb_subr.c 1804 const int nports = dev->ud_hub->uh_hubdesc.bNbrPorts; local in function:usbd_fill_deviceinfo
1805 for (i = 1; i <= __arraycount(di->udi_ports) && i <= nports; i++) {
1830 di->udi_nports = nports;
  /src/sys/arch/powerpc/booke/dev/
pq3duart.c 160 u_int nports = cnl->cnl_size / DUART_SIZE; local in function:pq3duart_attach
165 aprint_normal(": %u ports\n", nports);
167 for (u_int port = 1; port <= uimin(2, nports); port++) {
  /src/usr.bin/systat/
netcmds.c 74 int nports, nhosts, protos; variable in typeref:typename:int
218 nports = 0;
221 for (p = ports; p < ports+nports; p++)
226 if (reallocarr(&ports, nports + 1, sizeof(*p)) != 0) {
230 p = &ports[nports++];
242 for (p = ports; p < ports+nports; p++)
254 for (p = ports; p < ports+nports; p++) {
  /src/sys/net/agr/
ieee8023ad_lacp.c 379 "nports %d -> %d\n",
413 "nports %d -> %d\n",
501 int nports; local in function:ieee8023ad_select_tx_port
516 nports = la->la_nports;
517 KASSERT(nports > 0);
525 hash %= nports;
600 LACP_DPRINTF((lp, "speed 0? media=0x%x nports=%d\n",
632 LACP_DPRINTF((NULL, "%s, speed=%" PRIu64 ", nports=%d\n",
  /src/usr.sbin/usbdevs/
usbdevs.c 278 unsigned int p, nports = di.udi_nports; local in function:usbdev
280 for (p = 0; p < nports && p < __arraycount(di.udi_ports); p++) {
  /src/sys/dev/pci/cxgb/
cxgb_ctl_defs.h 85 unsigned int nports; /* number of ports on this adapter */ member in struct:adap_ports
cxgb_common.h 387 unsigned int nports; /* # of ethernet ports */ member in struct:adapter_params
593 for (iter = 0; iter < (adapter)->params.nports; ++iter)
765 int t3_vsc7323_init(adapter_t *adap, int nports);
  /src/sys/dev/audio/
audiovar.h 112 int nports; /* number of selectable ports */ member in struct:au_mixer_ports
  /src/sbin/ifconfig/
lagg.c 258 size_t nports, bufsiz; local in function:getlagg
267 for (i = 0, nports = 0; i < LAGG_RETRY_MAX; i++) {
269 bufsiz += sizeof(req->lrq_reqports[0]) * nports;
276 req->lrq_nports = nports;
282 nports = req->lrq_nports;
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_dp_mst_helper.h 267 u8 nports; member in struct:drm_dp_link_address_ack_reply
  /src/sys/net/lagg/
if_lagg.c 655 size_t allocsiz, outlen, nports; local in function:lagg_ioctl
668 nports = sc->sc_nports;
669 nports = MIN(nports, laggreq.lrq_nports);
672 + sizeof(laggresp->lrq_reqports[0]) * nports;
675 rv = lagg_get_stats(sc, laggresp, nports);
679 nports = MIN(laggresp->lrq_nports, nports);
681 + sizeof(laggresp->lrq_reqports[0]) * nports;
695 nports = laggreq.lrq_nports
    [all...]

Completed in 39 milliseconds